forked from Dapp-Stack/Dapp-Stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 999 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
33
34
35
36
37
38
39
40
41
42
43
{
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"wsrun": "wsrun",
"lerna": "lerna",
"build": "wsrun build $PKG -r --stages --exclude-missing",
"clean": "wsrun clean $PKG -r --parallel --exclude-missing",
"rebuild": "run-s clean build",
"lint": "wsrun lint $PKG --stages --exclude-missing",
"commitmsg": "commitlint -e $GIT_PARAMS",
"doc": "wsrun doc $PKG -r --parallel --exclude-missing",
"precommit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"husky": "^1.1.2",
"lerna": "^3.1.1",
"lint-staged": "^8.0.4",
"npm-run-all": "^4.1.3",
"prettier": "^1.15.2",
"wsrun": "^2.2.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}