-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 907 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 907 Bytes
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
{
"name": "vitexpress",
"private": true,
"workspaces": [
"apps/server/*",
"apps/client/*",
"packages/common/*",
"packages/server/*",
"packages/client/*",
"packages/tsconfig/*"
],
"scripts": {
"dashboard:dev": "yarn workspace @monyfox/dashboard dev",
"dashboard:build": "yarn workspaces foreach -Rt --from @monyfox/dashboard run build",
"build": "yarn workspaces foreach -At run build",
"lint": "yarn workspaces foreach -A run lint",
"test": "yarn workspaces foreach -A run test",
"coverage": "npx vitest run --coverage",
"ncu": "npx npm-check-updates -u && yarn workspaces foreach -A run ncu"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.15",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=22.14.0"
},
"packageManager": "yarn@4.9.1",
"dependencies": {
"date-fns": "^4.1.0"
}
}