forked from gdn0101/AgensGraphViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 735 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "agensgraph-viewer",
"version": "1.1.0",
"private": true,
"scripts": {
"setup": "npm install && npm-run-all setup-front setup-backend",
"setup-front": "cd frontend && npm install",
"setup-backend": "cd backend && npm install",
"front": "cd frontend && npm run start",
"build-front": "cd frontend && npm install && npm run build",
"build-back": "cd backend && npm install && npm run build",
"backend": "cd backend && npm run start",
"deploy": "npm install && npm-run-all build-front build-back",
"start": "npm-run-all --parallel backend front"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"pm2": "^5.4.1"
}
}