-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 959 Bytes
/
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
{
"name": "react-grid",
"version": "1.0.0",
"description": "react and slim grid",
"main": "app.js",
"scripts": {
"start:hot": "node app.js",
"start:dev": "webpack -p --config webpack.config.dev.js && NODE_ENV=production node app.js",
"start:prod": "webpack -p --config webpack.config.prod.js && NODE_ENV=production node app.js"
},
"engines": {
"node": "6.3.0"
},
"author": "andy nguyen",
"license": "UNLICENSED",
"dependencies": {
"express": "^4.14.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"webpack": "^1.13.1"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"muicss": "^0.6.7",
"node-sass": "^3.8.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.1"
}
}