-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
{
"type": "module",
"scripts": {
"========= Build": "",
"build": "pnpm --recursive --filter {packages/*} run build",
"========= Dev": "",
"dev": "cd ./packages/vike-solid/ && pnpm run dev",
"========= Test": "",
"test": "pnpm run test:e2e && pnpm run test:types",
"test:e2e": "test-e2e",
"test:types": "test-types",
"========= Formatting": "",
"format": "pnpm run format:biome",
"format:biome": "biome format --write .",
"format:check": "biome format . || (echo 'Fix formatting by running `$ pnpm run -w format`.' && exit 1)",
"========= Lint": "",
"lint": "eslint .",
"========= Release": "",
"release": "cd ./packages/vike-solid/ && pnpm run release",
"release:minor": "cd ./packages/vike-solid/ && pnpm run release:minor",
"release:commit": "cd ./packages/vike-solid/ && pnpm run release:commit",
"========= Clean": "",
"reset": "git clean -Xdf && pnpm install && pnpm run build",
"========= Only allow pnpm; forbid yarn & npm": "",
"preinstall": "npx only-allow pnpm"
},
"pnpm": {
"overrides": {
"vike-solid": "link:./packages/vike-solid/",
"vike-solid-query": "link:./packages/vike-solid-query/"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@brillout/test-e2e": "^0.5.36",
"@brillout/test-types": "^0.1.15",
"eslint": "^9.15.0",
"eslint-plugin-solid": "^0.14.4",
"playwright": "^1.49.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"packageManager": "[email protected]"
}