-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "hoof",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"prepare": "husky",
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...')} else {process.exit(1)}\" || npx -y only-allow pnpm",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "nx run-many --targets=test:sherif,test:knip,test:eslint,test:publint,test --exclude=e2e",
"test:e2e": "nx run e2e:test",
"test:eslint": "nx affected --target=test:eslint",
"test:publint": "publint --strict",
"test:sherif": "sherif",
"test:knip": "knip",
"build": "nx affected --target=build",
"build:all": "nx run-many --target=build",
"dev:libs": "nx watch --all -- nx run-many --targets=build --exclude=api,worker",
"dev": "pnpm run build:all && nx drizzle:push db && nx run-many --targets=dev,dev:libs",
"prettier": "prettier . --check --ignore-unknown",
"prettier:write": "prettier . --write --ignore-unknown"
},
"nx": {
"includedScripts": [
"test:knip",
"test:sherif",
"test:publint"
]
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@nx/vite": "22.4.5",
"@nx/vitest": "22.4.5",
"@types/node": "^24.3.1",
"@vitest/coverage-v8": "catalog:",
"eslint": "^9.38.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^2.1.0",
"knip": "^5.80.2",
"lint-staged": "^16.2.0",
"nx": "22.4.5",
"prettier": "^3.7.4",
"publint": "^0.3.12",
"sherif": "^1.6.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.2",
"vite": "catalog:",
"vitest": "catalog:"
}
}