-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.14 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
{
"name": "one-erp",
"description": "一套面向制造与供应链场景的 AI Native ERP,主打元数据驱动、事件驱动和多端协同",
"author": "OneERP Team",
"private": true,
"scripts": {
"seed": "npm --prefix apps/api run seed",
"prepare": "husky",
"commitlint": "commitlint --config commitlint.config.cjs --from=HEAD~1 --to=HEAD",
"typecheck": "npm --prefix apps/api run typecheck && npm --prefix apps/web run typecheck",
"lint": "npm --prefix apps/api run lint && npm --prefix apps/web run lint",
"test": "npm --prefix apps/api run test -- --passWithNoTests && npm --prefix apps/web run test",
"build": "npm --prefix apps/api run build && npm --prefix apps/web run build",
"validate": "npm --prefix apps/api run prisma:validate && npm --prefix apps/api run prisma:generate && npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@nestjs/event-emitter": "^3.0.1",
"eventemitter2": "^6.4.9"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"fs-extra": "^11.3.4",
"husky": "^9.1.7"
}
}