-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"version": "0.0.1",
"private": true,
"name": "oceny-frontend",
"dependencies": {
"axios": "0.7.0",
"ejs": "2.3.4",
"express": "4.13.3",
"history": "1.12.3",
"nodemon": "1.8.0",
"react": "0.14.2",
"react-dom": "0.14.0",
"react-redux": "4.0.0",
"react-router": "1.0.0-rc2",
"redux": "3.0.3",
"redux-router": "1.0.0-beta3",
"redux-thunk": "1.0.0"
},
"scripts": {
"start": "nodemon --exec babel-node -- server.js",
"build": "rimraf dist && NODE_ENV=production webpack --config ./webpack/production.config.js --progress --profile --colors",
"production": "NODE_ENV=production npm start"
},
"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.0",
"css-loader": "0.19.0",
"extract-text-webpack-plugin": "0.8.2",
"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.12.4",
"webpack": "1.12.2",
"webpack-dev-middleware": "1.2.0"
}
}