-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
38 lines (38 loc) · 919 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": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.7.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.5.2",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^3.0.9",
"lerna": "^3.16.5",
"lint-staged": "^10.2.11",
"prettier": "^1.4.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {}
}