forked from rgordon95/advanced-react-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"name": "advanced-react",
"version": "1.0.0",
"description": "Advanced React",
"main": "lib/server.js",
"repository": "rgordon95/advanced-react-demo",
"author": "Richard Gordon",
"license": "MIT",
"scripts": {
"dev": "NODE_PATH=./lib pm2 start lib/server.js --watch --interpreter babel-node --name appDev",
"webpack": "webpack -wd",
"test": "jest --watch",
"verify-tests": "jest --coverage",
"build-webpack": "webpack -p",
"build-node": "babel lib -d build --copy-files",
"start-prod": "NODE_ENV=production NODE_PATH=./build pm2 start build/server.js -i max --name appProd"
},
"babel": {
"presets": [
"react",
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
},
"devDependencies": {
"babel-eslint": "7.2.3",
"enzyme": "2.9.1",
"eslint": "4.1.0",
"eslint-plugin-react": "7.1.0",
"jest": "20.0.4",
"react-test-renderer": "15.6.1"
},
"dependencies": {
"axios": "0.16.2",
"babel-cli": "6.24.1",
"babel-loader": "7.1.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.5.2",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"ejs": "2.5.6",
"express": "4.15.3",
"lodash.debounce": "4.0.8",
"lodash.pickby": "4.6.0",
"pm2": "2.5.0",
"prop-types": "15.5",
"react": "15.6.1",
"react-addons-perf": "15.4.2",
"react-dom": "15.6.1",
"webpack": "3.0.0"
}
}