-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "starpoint-brewing",
"version": "0.2.0",
"description": "A test project for the starpoint website",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test karma start",
"build": "rimraf dist && node ./node_modules/webpack/bin/webpack --config webpack.release.config.js --bail --progress --profile --colors",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisgbaker/starpoint.git"
},
"keywords": [
"starpoint",
"brewing"
],
"author": "Chris Baker <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/chrisgbaker/starpoint/issues"
},
"homepage": "https://github.com/chrisgbaker/starpoint#readme",
"dependencies": {
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^5.0.3",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@types/assertion-error": "^1.0.30",
"@types/chai": "^3.4.34",
"@types/isomorphic-fetch": "0.0.34",
"@types/karma": "^0.13.33",
"@types/mocha": "^2.2.32",
"@types/node": "^7.0.5",
"@types/react": "^15.0.14",
"@types/react-dom": "^15.5.0",
"@types/react-redux": "^4.4.36",
"@types/react-router-dom": "^4.0.4",
"@types/redux-immutable": "^3.0.33",
"@types/sinon": "^2.2.2",
"autoprefixer": "^7.1.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.17.0",
"babel-preset-stage-3": "^6.22.0",
"chai": "^3.5.0",
"compression": "^1.6.2",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"eslint": "^3.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.0",
"file-loader": "^0.11.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-verbose-reporter": "0.0.6",
"karma-webpack": "^2.0.2",
"mocha": "^3.1.0",
"node-sass": "^4.1.0",
"phantomjs-prebuilt": "^2.1.13",
"postcss-loader": "^2.0.5",
"react-dom": "^15.3.2",
"react-interval": "^2.0.1",
"redux-devtools": "^3.3.1",
"redux-devtools-dispatch": "^2.2.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-filter-actions": "^1.2.0",
"redux-devtools-log-monitor": "^1.0.11",
"sass-loader": "^6.0.2",
"sinon": "^2.0.0",
"source-map-loader": "^0.2.0",
"style-loader": "^0.17.0",
"ts-loader": "^2.0.1",
"typescript": "^2.1.0",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2"
}
}