-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.72 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.72 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "devbarometer",
"private": true,
"type": "module",
"workspaces": [
"frontend",
"backend",
"shared"
],
"scripts": {
"prepare": "husky",
"format:frontend": "npm --workspace frontend run format",
"format:backend": "npm --workspace backend run format",
"format:shared": "npm --workspace shared run format",
"format": "npm-run-all --parallel --print-label format:frontend format:backend format:shared",
"format:check:frontend": "npm --workspace frontend run format:check",
"format:check:backend": "npm --workspace backend run format:check",
"format:check:shared": "npm --workspace shared run format:check",
"format:check": "npm-run-all --parallel --print-label format:check:frontend format:check:backend format:check:shared",
"lint:frontend": "npm --workspace frontend run lint",
"lint:backend": "npm --workspace backend run lint",
"lint:shared": "npm --workspace shared run lint",
"lint": "npm-run-all --parallel --print-label lint:frontend lint:backend lint:shared",
"type-check:frontend": "npm --workspace frontend run type-check",
"type-check:backend": "npm --workspace backend run type-check",
"type-check:shared": "npm --workspace shared run type-check",
"type-check": "npm-run-all --parallel --print-label type-check:frontend type-check:backend type-check:shared",
"test:frontend": "npm --workspace frontend run test",
"test:backend": "npm --workspace backend run test",
"test:shared": "npm --workspace shared run test",
"test": "npm-run-all --parallel --print-label test:frontend test:backend test:shared",
"test:coverage:frontend": "npm --workspace frontend run test:coverage",
"test:coverage:backend": "npm --workspace backend run test:coverage",
"test:coverage:shared": "npm --workspace shared run test:coverage",
"test:coverage": "npm-run-all --parallel --print-label test:coverage:frontend test:coverage:backend test:coverage:shared",
"check": "npm-run-all --sequential lint format type-check test",
"audit": "audit-ci --config ./audit-ci.jsonc",
"audit:prod": "npm audit --omit=dev",
"agent": "npm --workspace backend run agent",
"export": "npm --workspace backend run export",
"restore": "npm --workspace backend run restore",
"build-shared": "npm --workspace shared run type-check && npm --workspace shared run clean && npm --workspace shared run build",
"generate-static": "npm --workspace backend run generate-static",
"build-frontend": "npm --workspace frontend run predeploy",
"deploy-frontend": "npm --workspace frontend run deploy",
"publish": "npm-run-all --sequential build-frontend deploy-frontend",
"update-site": "npm-run-all --sequential generate-static publish"
},
"lint-staged": {
"frontend/src/**/*.{ts,tsx}": [
"npm --workspace frontend run format",
"npm --workspace frontend run lint",
"npm --workspace frontend run test:changed"
],
"backend/src/**/*.{ts,tsx}": [
"npm --workspace backend run format",
"npm --workspace backend run lint",
"npm --workspace backend run test:changed"
]
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"audit-ci": "^7.1.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-run-all": "^4.1.5",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"typescript": "5.8.3",
"vite": "^7.0.6",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22"
}
}