-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "spa",
"version": "1.0.0",
"description": "single page app using React, Redux, Webpack and Sass",
"main": "app/server/server.js",
"repository": "no",
"author": "Brandon Murry",
"license": "ISC",
"homepage": "",
"scripts": {
"start": "node app/server/server",
"build": "rimraf dist && set NODE_ENV=production && webpack --config ./webpack.production.config.js --progress --profile --colors",
"eslint": "eslint .",
"jscs": "jscs ."
},
"dependencies": {
"babel-cli": "^6.4.0",
"isomorphic-fetch": "^2.2.1",
"node-sass": "^3.4.2",
"react": "^0.14.8",
"react-dom": "^0.14.3",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.3.1",
"redux-simple-router": "^2.0.4",
"redux-thunk": "^2.0.1",
"sass-loader": "^3.2.0"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-eslint": "^4.1.6",
"babel-jscs": "^2.0.5",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.2.0",
"compass-mixins": "^0.12.7",
"css-loader": "^0.23.1",
"eslint": "^1.5.0",
"eslint-plugin-react": "^3.4.2",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.6.1",
"jscs": "^2.1.1",
"jsdom": "^6.5.1",
"json-loader": "^0.5.3",
"mocha": "^2.3.3",
"mocha-jsdom": "^1.0.0",
"node-sass": "^3.4.2",
"postcss-loader": "^0.6.0",
"react-addons-test-utils": "^0.14.3",
"react-transform-hmr": "^1.0.0",
"rimraf": "^2.4.3",
"sass-loader": "^3.2.0",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"stats-webpack-plugin": "^0.2.1",
"style-loader": "^0.13.0",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0"
}
}