-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.92 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": "mo-devflow",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:api": "tsx watch apps/api/src/index.ts",
"start:api": "tsx apps/api/src/index.ts",
"dev:worker": "tsx watch apps/worker/src/index.ts",
"start:worker": "tsx apps/worker/src/index.ts",
"dev:web": "npm --workspace @mo-devflow/web run dev",
"db:migrate": "tsx packages/db/src/migrate.ts",
"sync:once": "tsx apps/worker/src/sync-once.ts",
"timeline:once": "tsx apps/worker/src/timeline-once.ts",
"rules:once": "tsx apps/worker/src/rules-once.ts",
"metrics:once": "tsx apps/worker/src/metrics-once.ts",
"drift:once": "tsx apps/worker/src/drift-once.ts",
"notify:once": "tsx apps/worker/src/notify-once.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "npm run typecheck && npm --workspace @mo-devflow/web run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"guard:sql": "tsx scripts/sql-guard.ts",
"guard:sensitive": "tsx scripts/sensitive-guard.ts",
"test": "vitest run",
"check": "npm run typecheck && npm run guard:sql && npm run guard:sensitive && npm run test",
"ci": "npm run format:check && npm run check && npm run build"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@octokit/rest": "^22.0.0",
"antd": "^6.1.0",
"dotenv": "^17.2.3",
"echarts": "^6.0.0",
"fastify": "^5.6.2",
"kysely": "^0.28.8",
"lucide-react": "^0.562.0",
"mysql2": "^3.16.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"yaml": "^2.8.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"prettier": "^3.9.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.15"
}
}