-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 848 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 848 Bytes
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
{
"name": "root",
"private": true,
"scripts": {
"lerna": "lerna",
"format:code": "prettier --write \"packages/**/*.{ts,js,?css}\"",
"format": "npm-run-all -p format:code",
"publish": "lerna run tsc && lerna publish --force-publish=*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{ts,js,?css,json}": [
"prettier --write",
"git add"
],
"packages/**/*.{ts,js}": [
"tslint -p tsconfig.json -c tslint.json --fix",
"git add"
]
},
"devDependencies": {
"codelyzer": "^5.2.2",
"husky": "^4.2.5",
"lerna": "^3.21.0",
"lint-staged": "^10.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"tslint": "^6.1.2"
},
"dependencies": {
"@types/node": "^14.0.5",
"typescript": "^3.9.3"
}
}