-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1022 Bytes
/
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
{
"name": "vike-cloudflare-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "cd packages/vike-cloudflare && pnpm run build",
"release": "cd packages/vike-cloudflare && pnpm run release",
"========= Test": "",
"test": "pnpm run lint && pnpm run test:units && pnpm run test:e2e && pnpm run test:types",
"test:e2e": "test-e2e",
"test:units": "pnpm --recursive --sequential --filter {packages/*} run test",
"test:types": "test-types",
"========= Formatting": "",
"format": "biome format --write .",
"lint": "biome lint .",
"========= Only allow pnpm; forbid yarn & npm": "",
"preinstall": "npx only-allow pnpm"
},
"keywords": [],
"author": "",
"pnpm": {
"overrides": {
"vike-cloudflare": "link:./packages/vike-cloudflare/"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@brillout/test-e2e": "^0.5.36",
"@brillout/test-types": "^0.1.15",
"playwright": "^1.48.2"
},
"packageManager": "[email protected]"
}