-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 978 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
{
"version": "0.0.0",
"private": true,
"scripts": {
"========= Basics": "",
"dev": "cd ./packages/vike-angular/ && pnpm run dev",
"build": "pnpm --recursive --filter {packages/*} run build",
"========= Release": "",
"release": "cd ./packages/vike-angular/ && pnpm run release",
"release:commit": "cd ./packages/vike-angular/ && pnpm run release:commit",
"========= Clean": "",
"clean": "git clean -Xdf",
"reset": "pnpm run clean && pnpm install && pnpm run build",
"========= Formatting": "",
"prettier": "git ls-files | egrep '\\.(json|js|jsx|css|ts|tsx|vue|mjs|cjs)$' | grep --invert-match package.json | xargs pnpm exec prettier --write",
"========= Only allow pnpm; forbid yarn & npm": "",
"preinstall": "npx only-allow pnpm"
},
"packageManager": "[email protected]",
"devDependencies": {
"prettier": "^3.1.0"
},
"pnpm": {
"overrides": {
"vike-angular": "link:./packages/vike-angular/"
}
}
}