-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.53 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.53 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
{
"scripts": {
"========= Build": "",
"build": "pnpm --recursive --filter \"{packages/*}\" run build",
"========= Dev": "",
"dev": "cd ./packages/vike-react/ && pnpm run dev",
"========= Test": "",
"test": "pnpm run test:units && pnpm run test:e2e && pnpm run test:types",
"test:e2e": "test-e2e",
"test:units": "pnpm --recursive --sequential run test:units",
"test:types": "test-types",
"========= 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 check --write --unsafe",
"format:check": "biome ci || (echo '\\033[1;34mFix errors by running `$ pnpm run -w format`.\\033[0m' && exit 1)",
"========= Release": "",
"release": "cd ./packages/vike-react/ && pnpm run release",
"release:minor": "cd ./packages/vike-react/ && pnpm run release:minor",
"release:commit": "cd ./packages/vike-react/ && pnpm run release:commit",
"release:all": "pnpm --recursive --sequential run release --yes",
"========= Reset": "",
"reset": "git clean -Xdf && pnpm install && pnpm run build",
"========= Only allow pnpm; forbid yarn & npm": "",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@brillout/test-e2e": "^0.6.20",
"@brillout/test-types": "^0.1.15",
"playwright-chromium": "^1.57.0",
"prettier": "^3.2.5"
},
"packageManager": "pnpm@9.4.0"
}