-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.45 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.45 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
{
"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": "pnpm --recursive 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",
"release:all": "pnpm --recursive --sequential run release --yes",
"========= Clean": "",
"reset": "git clean -Xdf && pnpm install && pnpm run build",
"========= Only allow pnpm; forbid yarn & npm": "",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@brillout/test-e2e": "^0.6.23",
"@vikejs/biome-config": "^2.0.1",
"eslint": "^10.1.0",
"eslint-plugin-solid": "^0.14.5",
"playwright": "^1.58.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"packageManager": "pnpm@9.15.4"
}