-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1.26 KB
/
package.json
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
{
"scripts": {
"========= Basics": "",
"dev": "cd ./packages/vike-node/ && pnpm run dev",
"build": "pnpm --recursive --filter {packages/*} run build",
"========= Test": "",
"test": "test-e2e && test-types",
"========= Release": "",
"release": "cd ./packages/vike-node/ && pnpm run release",
"release:commit": "cd ./packages/vike-node/ && pnpm run release:commit",
"========= Clean": "",
"reset": "git clean -Xdf && pnpm install && pnpm run build",
"========= Formatting": "",
"format": "pnpm run format:biome",
"format:prettier": "git ls-files | egrep '\\.(json|js|jsx|css|ts|tsx|vue|mjs|cjs)$' | grep --invert-match package.json | xargs pnpm exec prettier --write",
"format:biome": "biome format --write .",
"format:check": "biome format . || (echo 'Fix formatting by running `$ pnpm run -w format`.' && exit 1)",
"========= Only allow pnpm; forbid yarn & npm": "",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@brillout/test-e2e": "^0.5.33",
"@brillout/test-types": "^0.1.15",
"playwright": "^1.46.0",
"prettier": "^3.3.3"
},
"pnpm": {
"overrides": {
"vike-node": "link:./packages/vike-node/"
}
},
"packageManager": "[email protected]"
}