-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "mipsum-app",
"version": "0.1.0",
"description": "",
"main": "index.js",
"engines": {
"node": "6.2.2"
},
"scripts": {
"start": "node server.js",
"dev": "node devServer.js",
"deploy-staging": "git push staging master",
"deploy-prod": "git push production master",
"build": "webpack --config ./webpack.prod.config.js --progress --colors",
"build:run": "NODE_ENV=production node server.js"
},
"keywords": [],
"author": "Anders Ramsay <[email protected]> (http://anders.co)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"clean-webpack-plugin": "^0.1.10",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.24.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"node-sass": "^3.8.0",
"npm-install-webpack-plugin": "^4.0.4",
"purifycss-webpack-plugin": "^2.0.3",
"react-hot-loader": "^1.3.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^0.14.1",
"webpack-validator": "^2.2.7"
},
"dependencies": {
"classnames": "^2.2.5",
"clipboard": "^1.5.12",
"express": "^4.13.3",
"random-number": "0.0.7",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-octicon": "^2.0.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"shuffle-array": "^1.0.0"
}
}