-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.84 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.84 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
{
"name": "hicad",
"version": "1.0.0",
"private": true,
"description": "HiCAD - AI driven parametric 3D CAD modeling platform",
"license": "GPL-3.0",
"packageManager": "pnpm@9.15.9",
"scripts": {
"dev": "concurrently -n shared,backend,frontend -c cyan,green,blue \"pnpm --filter @hicad/shared dev\" \"pnpm --filter @hicad/backend dev\" \"pnpm --filter @hicad/frontend dev\"",
"build": "pnpm --filter @hicad/shared build && pnpm --filter @hicad/backend build && pnpm --filter @hicad/frontend build",
"start": "pnpm --filter @hicad/backend start",
"test": "pnpm --filter @hicad/shared test && pnpm --filter @hicad/backend test && pnpm --filter @hicad/frontend test",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm --filter @hicad/shared typecheck && pnpm --filter @hicad/backend typecheck && pnpm --filter @hicad/frontend typecheck",
"audit:prod": "pnpm audit --registry=https://registry.npmjs.org --prod --audit-level high",
"test:e2e": "playwright test",
"bundle:check": "node scripts/check-frontend-bundle.mjs",
"ci:quality": "pnpm format:check && pnpm lint && pnpm audit:prod && pnpm test && pnpm typecheck && pnpm build && pnpm bundle:check && pnpm test:e2e"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@types/node": "^20.12.12",
"concurrently": "^8.2.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"typescript": "^5.4.5",
"typescript-eslint": "^8.59.3",
"vitest": "^1.6.0",
"vue-eslint-parser": "^10.4.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"lodash": "^4.18.1",
"multer": "^2.1.1"
}
}
}