-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "react-starter-pack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha \"app/**/*.test.js\" --opts test/mocha.opts",
"test:watch": "npm run test -- --watch",
"restart": "npm run restart:server && npm run restart:api",
"restart:server": "pm2 restart react-starter-pack",
"restart:api": "pm2 restart react-starter-pack-api",
"dev": "babel-node dev-server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"css-loader": "^0.26.0",
"fake-style-loader": "^1.0.1",
"node-sass": "^3.13.0",
"pm2": "^2.1.5",
"pug-loader": "^2.3.0",
"react-hot-loader": "3.0.0-beta.6",
"redux-logger": "^2.7.4",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "2.1.0-beta.27",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "2.1.0-beta.11",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"axios": "^0.15.2",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"cors": "^2.8.1",
"express": "^4.14.0",
"mocha": "^3.2.0",
"normalizr": "^2.2.1",
"pug": "^2.0.0-beta6",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"react-router": "next",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"uuid": "^3.0.0"
}
}