forked from javedh-dev/tracktor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.21 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.21 KB
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
{
"name": "tracktor",
"private": true,
"workspaces": [
"app/*"
],
"scripts": {
"setup": "node scripts/setup-env.js",
"test:cors": "node scripts/test-cors.js",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspace=backend && npm run build --workspace=frontend",
"build:backend": "npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"start": "npm run start --workspace=backend",
"preview": "npm run preview --workspace=backend",
"db:migrate": "npm run db:migrate --workspace=backend",
"db:seed": "npm run db:seed --workspace=backend",
"db:status": "npm run db:status --workspace=backend",
"format": "npm run format --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"check": "npm run check --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"reset": "npm run reset --workspaces --if-present",
"install:all": "npm install --workspaces"
},
"devDependencies": {
"concurrently": "^9.2.0"
}
}