-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 948 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 948 Bytes
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
{
"name": "basic-server-side-react",
"version": "1.0.0",
"main": "ui-server/ui-server.js",
"scripts": {
"dev": "pm2 start process.json && webpack -wd",
"build:prod": "webpack",
"prod": "npm run build:prod && pm2 start process.json --env production",
"stop": "pm2 stop basic-server-side-react && pm2 delete basic-server-side-react",
"webpack": "webpack -wd"
},
"babel": {
"presets": [
"react",
"env",
"stage-2"
]
},
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"ejs": "^2.5.7",
"express": "^4.16.2",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"pm2": "^2.8.0",
"webpack": "^3.10.0"
}
}