-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (47 loc) · 1.93 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
39
40
41
42
43
44
45
46
47
48
{
"name": "vudl",
"private": true,
"engine": {
"node": ">=18.0.0"
},
"comments": {
"dev": "tsc can't be bundled into concurrently because it suppresses the logs of other processes. Still needs to be run separately."
},
"scripts": {
"api": "cd api && npm run start:server",
"api:build": "cd api && npm run build",
"api:dev": "cd api && npm run start:serverWatch",
"api:format": "cd api && npm run format",
"api:lint": "cd api && npm run lint",
"api:saml:metadata": "cd api && npm run saml:metadata",
"api:setup": "cd api && npm ci",
"api:test": "cd api && npm test",
"api:testWatch": "cd api && npm run testWatch",
"client": "cd client && npm run prod",
"client:build": "cd client && npm run build",
"client:dev": "cd client && npm run start",
"client:format": "cd client && npm run format",
"client:lint": "cd client && npm run lint",
"client:setup": "cd client && npm ci",
"client:snapshots": "cd client && npm run snapshots",
"client:test": "cd client && npm test",
"client:testWatch": "cd client && npm run testWatch",
"queue": "cd api && npm run start:worker",
"queue:dev": "cd api && npm run start:workerWatch",
"ingest": "node api/scripts/ingest.js",
"backend": "concurrently npm:api npm:queue",
"backend:dev": "concurrently npm:api:dev npm:queue:dev",
"build": "concurrently npm:api:build npm:client:build",
"dev": "concurrently -c 'cyan,green,gray' npm:client:dev npm:api:dev npm:queue:dev",
"format": "concurrently npm:client:format npm:api:format",
"lint": "concurrently npm:client:lint npm:api:lint",
"setup": "concurrently npm:api:setup npm:client:setup",
"start": "concurrently -c 'cyan,green,gray' npm:client npm:api npm:queue",
"test": "concurrently npm:client:test npm:api:test",
"watch": "cd api && npm run watch",
"postinstall": "npm run setup"
},
"devDependencies": {
"concurrently": "^8"
}
}