-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 792 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
{
"name": "jate",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start:dev": "concurrently \"cd client && npm run build\" \"cd server && npm run server\" ",
"start": "npm run build && cd server && node server.js",
"server": "cd server node server.js --ignore client",
"build": "cd client && npm run build",
"install": "cd server && npm i && cd ../client && npm i",
"client": "cd client && npm start",
"webdev": "webpack-dev-server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"heroku": "^8.0.2",
"if-env": "^1.0.4",
"webpack": "^5.76.3"
},
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^2.0.4",
"webpack-cli": "^5.0.1"
}
}