forked from lyr613/novel-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
45
46
47
48
49
50
51
52
53
54
{
"name": "qv-writer",
"private": true,
"keywords": [
"novel",
"fiction"
],
"author": "秋无衣",
"license": "MIT",
"workspaces": [
"packages/*"
],
"dependencies": {
"@types/fs-extra": "^8.1.0",
"@types/uuid": "^7.0.0",
"uuid": "^7.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"scripts": {
"install-nod_emodules": " yarn -W ",
"build": " node ./scripts/build.js "
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,jsx,json,ts,tsx,css,scss}": [
"prettier --write",
"git add"
],
"*.{js,ts}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"semi": false,
"tabWidth": 4,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
}
}