-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 972 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
{
"name": "root",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"build:dev": "lerna run build:dev",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"clean": "lerna clean"
},
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"eslint": "^7.11.00",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "26.6.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.0",
"prettier": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-merge": "npm i"
}
},
"lint-staged": {
"packages/**/src/**/*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}