-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.89 KB
/
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
30
31
32
33
34
35
36
37
38
{
"name": "xmacroscope",
"version": "0.7.0",
"license": "MIT",
"private": true,
"scripts": {
"install:mav": "cd packages/client-mav && npm ci",
"install:kiosks": "cd packages/kiosks && npm ci",
"install:run": "cd packages/client-run && npm install",
"install:server": "cd packages/server-graphql && npm install",
"postinstall": "npm-run-all --parallel install:mav install:run install:server --print-label",
"setup:server": "cp packages/server-graphql/env.example packages/server-graphql/.env",
"setup:run": "cp packages/client-run/env.development.example packages/client-run/.env",
"setup": "npm-run-all setup:run setup:server",
"start:mav": "cd packages/client-mav && npm run build:libs && npm run start-local",
"start:run": "cd packages/client-run && npm run start",
"start:server": "cd packages/server-graphql && npm run start",
"start-dev": "npm-run-all --parallel start:mav start:run start:server --print-label",
"start": "cd packages/server-graphql && npm run start:prod",
"clean": "rimraf packages/client-mav/dist packages/client-run/build packages/server-graphql/build",
"build:mav": "cd packages/client-mav && npm run build xmacroscope-dvl-fw-plugin && npm run build-deploy",
"build:run": "cd packages/client-run && npm run build",
"build:server": "cd packages/server-graphql && npm run build",
"build:kiosks": "cd packages/kiosks && npm run build",
"build": "npm-run-all clean --parallel build:mav build:run build:server --print-label",
"build:mav-demo": "cd packages/client-mav && npm run build:libs && npm run build-demo",
"build:staging": "cd packages/client-mav && npm run build:libs && npm run build-staging",
"export:runs": "bash scripts/get-runs.sh runs.csv"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"rimraf": "2.6.3"
},
"dependencies": {
"vega-embed": "^6.18.2",
"vega-lite": "^5.1.1"
}
}