|
1 | 1 | { |
2 | 2 | "name": "course-mate", |
3 | 3 | "version": "1.0.0", |
4 | | - "description": "", |
| 4 | + "author": "", |
5 | 5 | "main": "index.js", |
| 6 | + "devDependencies": { |
| 7 | + "@biomejs/biome": "^1.9.1", |
| 8 | + "lefthook": "^1.10.10", |
| 9 | + "lint-staged": "^15.2.10" |
| 10 | + }, |
| 11 | + "description": "", |
| 12 | + "keywords": [], |
| 13 | + "license": "ISC", |
6 | 14 | "scripts": { |
7 | 15 | "prepare": "lefthook install && (cd server; bun run prepare)", |
8 | 16 | "check": "bun type && bun style:check", |
|
19 | 27 | "watch:web": "cd web; bun run dev", |
20 | 28 | "watch:server": "cd server; bun run dev", |
21 | 29 | "seed": "cd server; bun prisma db seed", |
22 | | - "prepare:deploy:web": "bun install --frozen-lockfile && bun run build:web", |
23 | | - "prepare:deploy:server": "bun install --frozen-lockfile", |
| 30 | + "prepare:deploy:web": "bun install && bun run build:web", |
| 31 | + "prepare:deploy:server": "bun install", |
24 | 32 | "deploy:web": "cd web; bun run start --port $PORT", |
25 | | - "deploy:server": "cd server; bun run src/main.ts", |
| 33 | + "deploy:server": "cd server; bun run src/index.ts", |
26 | 34 | "dev-db": "make dev-db", |
27 | 35 | "test": "make test", |
28 | 36 | "spell": "bunx cspell --quiet ." |
29 | 37 | }, |
30 | | - "keywords": [], |
31 | | - "author": "", |
32 | | - "license": "ISC", |
33 | | - "workspaces": ["common", "web", "server"], |
34 | | - "devDependencies": { |
35 | | - "@biomejs/biome": "^1.9.1", |
36 | | - "lefthook": "^1.10.10", |
37 | | - "lint-staged": "^15.2.10" |
38 | | - }, |
39 | | - "dependencies": {}, |
40 | | - "trustedDependencies": ["@biomejs/biome", "lefthook"] |
| 38 | + "trustedDependencies": ["@biomejs/biome", "lefthook"], |
| 39 | + "workspaces": ["common", "web", "server"] |
41 | 40 | } |
0 commit comments