-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.2 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
67
68
69
70
71
72
{
"name": "react-node-starter",
"version": "1.0.0",
"description": "an example for deploying a React + NodeJS app to Heroku",
"main": "bin/www",
"scripts": {
"build": "webpack --config webpack.config.js ",
"dev": "npm run build && nodemon --inspect ./bin/www --ignore './public'",
"start": "node ./bin/www",
"prod": "npm run build && NODE_ENV=production node ./bin/www",
"test": "mocha --compilers js:babel-core/register ./test/**/*.spec.js --require ignore-styles"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"css-loader": "^0.28.0",
"enzyme": "^2.8.1",
"expect": "^1.20.2",
"express": "^4.15.2",
"express-validator": "^3.2.0",
"jquery": "^3.2.1",
"less": "^2.7.2",
"mocha": "^3.2.0",
"mongoose": "^4.10.5",
"morgan": "^1.8.2",
"nodemon": "^1.11.0",
"prop-types": "^15.5.8",
"pug": "^2.0.0-rc.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"style-loader": "^0.16.1"
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.1.0",
"ignore-styles": "^5.0.1",
"json-loader": "^0.5.4",
"less-loader": "^4.0.4",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.5.1",
"react-css-modules": "^4.3.0",
"react-test-renderer": "^15.5.4",
"rucksack-css": "^0.9.1",
"sass-loader": "^6.0.5",
"transform-runtime": "0.0.0",
"webpack": "^2.6.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.18.0"
}
}