-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"version": "0.0.1",
"private": true,
"name": "react-workshop",
"dependencies": {
"babel": "6.3.26",
"babel-core": "^6.4.0",
"ejs": "^2.3.4",
"events": "^1.1.0",
"express": "4.13.3",
"file-loader": "^0.8.5",
"flux": "^2.1.1",
"history": "1.17.0",
"react": "0.14.6",
"react-dom": "0.14.6",
"react-redux": "^4.4.0",
"react-router": "^1.0.0-rc2",
"redux": "^3.3.1",
"redux-router": "1.0.0-beta6",
"redux-thunk": "^1.0.3",
"url-loader": "^0.5.7"
},
"scripts": {
"dev": "node --require babel-core/register -- server.js",
"build": "rimraf dist && NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config ./webpack/production.config.js --progress --profile --colors",
"deploy": "node_modules/shipit-cli/bin/shipit demo deploy"
},
"devDependencies": {
"babel-cli": "6.3.13",
"babel-core": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-plugin-syntax-jsx": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-loader": "6.2.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^1.6.1",
"node-jsx": "0.13.3",
"node-sass": "^3.3.3",
"node-sass-middleware": "^0.9.6",
"rimraf": "^2.4.3",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-dev-server": "^1.12.1",
"webpack-hot-middleware": "^2.4.1"
}
}