-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 892 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "heleon-tracker",
"private": true,
"version": "0.1.0",
"description": "Hele-On real-time tracker MVP workspace",
"workspaces": [
"apps/api",
"apps/web"
],
"scripts": {
"dev": "concurrently -n api,web -c cyan,magenta \"npm --workspace @heleon/api run dev\" \"npm --workspace @heleon/web run dev\"",
"dev:api": "npm --workspace @heleon/api run dev",
"dev:web": "npm --workspace @heleon/web run dev",
"build": "npm --workspace @heleon/web run build",
"start": "npm --workspace @heleon/api run start",
"validate:feeds": "npm --workspace @heleon/api run validate:feeds",
"sample:feeds": "npm --workspace @heleon/api run sample:feeds",
"summarize:sample": "npm --workspace @heleon/api run summarize:sample",
"build:gtfs": "npm --workspace @heleon/api run build:gtfs"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}