forked from apache/age-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 822 Bytes
/
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
{
"name": "ag-viewer",
"version": "0.0.1",
"private": true,
"engines": {
"node": "^14.16.0"
},
"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-run-all build-front backend",
"start": "npm-run-all --parallel backend front"
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
}
]
}