-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 821 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 821 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
{
"name": "web-dev-portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"concurrently": "^3.5.1",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"morgan": "^1.9.0",
"nodemon": "^1.17.4",
"pug": "^2.0.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4"
},
"scripts": {
"dev": "concurrently \"cd client && npm run start\" \"cd client && gulp\"",
"dev2": "concurrently \"npm run devServer\" \"cd client && npm run start\" \"cd client && gulp\"",
"prod": "cd client && webpack --mode production && gulp prodcss",
"devServer": "PORT=3001 nodemon --watch server ./server/app localhost",
"prodServer": "PORT=80 nodemon --watch server ./server/app localhost"
}
}