-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 961 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
34
35
36
37
{
"name": "graphcoder",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"pnpm --filter @graphcoder/client dev\" \"pnpm --filter @graphcoder/server dev\"",
"build": "pnpm -r --if-present build",
"test": "pnpm --filter @graphcoder/client test",
"test:unit": "pnpm -r --filter !@graphcoder/client test",
"lint": "oxlint --fix",
"format": "oxfmt --write",
"check": "pnpm -r check && oxlint",
"prepare": "husky"
},
"devDependencies": {
"@fastify/pre-commit": "^2.2.1",
"@types/node": "^25.0.3",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.23.0",
"oxlint": "^1.38.0",
"tsdown": "^0.22.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,css,md,html}": [
"oxfmt --write"
]
}
}