-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.59 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cmumaps",
"version": "0.0.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "^1.3.5",
"@types/web": "^0.0.279",
"husky": "^8.0.3",
"markdownlint-cli2": "^0.20.0",
"mprocs": "^0.9.1",
"syncpack": "^13.0.4",
"turbo": "^2.7.4",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"build": "turbo build",
"check": "turbo check",
"db:populate": "cd apps/dataflow && uv run populate-database",
"dev": "bun run dev:prepare:noauth && IGNORE_LOGIN=true VITE_IGNORE_LOGIN=true bunx mprocs --config mprocs.yaml",
"dev:auth": "bun run dev:prepare && bunx mprocs --config mprocs.yaml",
"dev:panel:db": "cd apps/server && bunx prisma studio",
"dev:panel:server": "cd apps/server && bun run dev",
"dev:panel:visualizer": "cd apps/visualizer && bunx vite --host",
"dev:panel:web": "cd apps/web && bun run dev:host",
"dev:prepare": "bun ./scripts/dev/prepare.ts",
"dev:prepare:noauth": "bun ./scripts/dev/prepare.ts --profile web-noauth",
"dev:prepare:visualizer": "bun ./scripts/dev/prepare.ts --profile visualizer",
"dev:server": "turbo dev --filter=@cmumaps/server",
"dev:ui:visualizer": "bun run dev:prepare:visualizer && bunx mprocs --config mprocs.visualizer.yaml",
"dev:visualizer": "turbo dev --filter=@cmumaps/visualizer --filter=@cmumaps/server",
"dev:web": "turbo dev --filter=@cmumaps/web --filter=@cmumaps/server",
"dev:web:host": "turbo dev:host --filter=@cmumaps/web --filter=@cmumaps/server",
"dev:web:noauth": "bun run dev:prepare:noauth && IGNORE_LOGIN=true VITE_IGNORE_LOGIN=true turbo dev --filter=@cmumaps/web --filter=@cmumaps/server",
"preinstall": "bunx only-allow bun",
"prepare": "husky && husky install",
"secrets:pull": "PROJECT=cmumaps APPS='web server visualizer dataflow' ENVS='applicants local dev staging prod' ./scripts/secrets/multi/pull.sh",
"secrets:push": "PROJECT=cmumaps APPS='web server visualizer dataflow' ENVS='applicants local dev staging prod' ./scripts/secrets/multi/push.sh",
"secrets:setup": "./scripts/secrets/setup.sh",
"start": "turbo start",
"sync": "cd apps/server && bun run db-generate && bun run tsoa && bun run openapi",
"syncpack": "syncpack lint",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"syncpack:update": "syncpack update",
"tsc": "turbo tsc"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
]
}