-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.88 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.88 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
{
"name": "cmumaps",
"version": "0.0.0",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "^1.3.5",
"@types/web": "^0.0.279",
"comment-json": "^4.5.1",
"husky": "^8.0.3",
"markdownlint-cli2": "^0.20.0",
"remeda": "^2.33.1",
"syncpack": "^13.0.4",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"build": "turbo build",
"check": "turbo check",
"dev:server": "turbo dev --filter=@cmumaps/server",
"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": "IGNORE_LOGIN=true VITE_IGNORE_LOGIN=true turbo dev --filter=@cmumaps/web --filter=@cmumaps/server",
"format": "turbo format",
"lint": "turbo lint",
"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/*"
]
}