-
-
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.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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": "@standardserver/repo",
"type": "module",
"version": "0.0.15",
"packageManager": "pnpm@10.26.2",
"license": "MIT",
"scripts": {
"prepare": "simple-git-hooks",
"type:check": "pnpm -r run type:check && tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "eslint --max-warnings=0 --fix .",
"monorepo:fix": "sherif --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@hono/node-server": "^2.0.1",
"@remix-run/node-fetch-server": "^0.13.0",
"@standardserver/core": "workspace:*",
"@standardserver/fetch": "workspace:*",
"@standardserver/node": "workspace:*",
"@standardserver/peer": "workspace:*",
"@standardserver/shared": "workspace:*",
"@types/node": "^25.0.3",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.2",
"eslint-plugin-ban": "^2.0.0",
"eslint-plugin-format": "^1.1.0",
"h3": "2.0.1-rc.7",
"lint-staged": "^16.2.7",
"sherif": "^1.9.0",
"simple-git-hooks": "^2.13.1",
"srvx": "^0.10.0",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.1.5",
"ws": "^8.19.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --no-warn-ignored --max-warnings=0 --fix"
}
}