-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.75 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.75 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": {
"========= Basics": "",
"dev": "cd ./packages/vike-photon/ && pnpm run dev",
"build": "pnpm --recursive --filter {packages/*} run build",
"build:examples": " pnpm --recursive --filter {examples/*} run build",
"build:vercel-demo": " pnpm run -C ./examples/vercel-demo build && cp -rf examples/vercel-demo/public examples/vercel-demo/.vercel .",
"========= Test": "",
"test": "test-e2e && pnpm run test:types",
"test:types": "pnpm --recursive test:types",
"========= Release": "",
"release": "cd ./packages/vike-photon/ && pnpm run release",
"release:minor": "cd ./packages/vike-photon/ && pnpm run release:minor",
"release:major": "cd ./packages/vike-photon/ && pnpm run release:major",
"release:commit": "cd ./packages/vike-photon/ && pnpm run release:commit",
"========= Clean": "",
"reset": "git clean -Xdf && pnpm install && pnpm run build",
"========= Formatting": "",
"lint": "biome lint .",
"format": "pnpm run format:biome",
"format:biome": "biome check --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": "^2.3.11",
"@brillout/test-e2e": "^0.6.21",
"@vikejs/biome-config": "^2.0.1",
"playwright": "^1.57.0"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"@types/node": "^20.19.25"
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@prisma/client",
"@prisma/engines",
"esbuild",
"playwright-chromium",
"prisma",
"sharp",
"workerd"
]
},
"packageManager": "pnpm@10.15.1"
}