-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
32 lines (32 loc) · 949 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
{
"name": "@quick-start/monorepo",
"version": "1.0.0",
"private": true,
"description": "An easy way to start a front-end project",
"license": "MIT",
"author": "Alex Wei<https://github.com/alex8088>",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "prettier --write .",
"snapshot:electron": "pnpm run -C packages/create-electron snapshot",
"snapshot:docs": "pnpm run -C packages/create-docs snapshot",
"snapshot:node-lib": "pnpm run -C packages/create-node-lib snapshot",
"snapshot:monorepo": "pnpm run -C packages/create-monorepo snapshot"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verifyCommit.js $1"
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"devDependencies": {
"lint-staged": "^13.0.3",
"picocolors": "^1.0.0",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.0",
"zx": "^7.0.8"
}
}