-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1021 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
{
"name": "project-48",
"version": "0.0.0",
"main": "index.js",
"repository": "https://github.com/connect-foundation/2019-20.git",
"author": "LEE SUK JAE <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"apis/*",
"web-apps/*"
],
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"husky": "^3.0.9",
"lerna": "^3.18.4",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"prettier": "^1.19.1"
},
"scripts": {
"fix:prettier": "prettier --write \"**/*.*\"",
"fix": "yarn fix:prettier",
"lint:prettier": "prettier --check \"**/*.*\"",
"lint": "yarn lint:prettier",
"all:precommit:check": "lerna run --concurrency 1 --stream precommit"
},
"eslintConfig": {
"extends": "prettier"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "./scripts/check-branch-not-master.sh && yarn all:precommit:check"
}
}
}