-
-
Notifications
You must be signed in to change notification settings - Fork 388
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.21 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
{
"scripts": {
"========= Dev": "",
"// Develop Vike": "",
"dev": "cd packages/vike/ && pnpm run dev",
"========= Build": "",
"// Build Vike": "",
"build": "cd packages/vike/ && pnpm run build",
"========= Test": "",
"test": "vitest run && test-e2e && test-types",
"test:units": "vitest --project unit",
"test:e2e": "vitest run --project e2e && test-e2e",
"test:types": "test-types",
"// https://github.com/vitejs/vite-ecosystem-ci/blob/6b5e66429c57047394cf7b7d8e052532ea03a414/tests/vike.ts#L14": "",
"test:vite-ecosystem-ci": "(export VITE_ECOSYSTEM_CI=true; vitest run && test-e2e --exclude test-deprecated-design && test-types)",
"========= Docs": "",
"// Develop website https://vike.dev locally": "",
"docs": "cd docs/ && pnpm run dev",
"// Build website for production": "",
"docs:build": "cd docs/ && pnpm run build",
"// Test website (CI)": "",
"docs:test": "cd docs/ && test-e2e",
"========= Release": "",
"release": "cd ./packages/vike/ && pnpm run release",
"release:minor": "cd ./packages/vike/ && pnpm run release:minor",
"release:major": "cd ./packages/vike/ && pnpm run release:major",
"release:commit": "cd ./packages/vike/ && pnpm run release:commit",
"========= Formatting": "",
"format": "biome check --write --unsafe",
"format:check": "biome ci && echo '\\033[1;32mFormatting is correct.\\033[0m' || (echo '\\033[1;34mFix formatting by running `$ pnpm run format`.\\033[0m' && exit 1)",
"========= Linting": "",
"lint": "cd packages/vike && node scripts/lint-assertenv.mjs",
"========= Spellchecking ": "",
"spellcheck": "spellcheck fix --version 1.33.1",
"spellcheck:check": "spellcheck check --version 1.33.1",
"========= 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/replace": "^0.1.6",
"@brillout/spellcheck": "^0.1.2",
"@brillout/test-e2e": "^0.6.23",
"@brillout/test-types": "^0.1.13",
"playwright-chromium": "1.57.0",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@9.15.9"
}