-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 KB
/
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
44
45
46
{
"private": true,
"scripts": {
"cm": "git-cz",
"test": "npm --prefix \"client\" run test",
"lint": "npm --prefix \"functions\" run lint"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "2.1.0",
"husky": "^2.7.0",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"prettier-plugin-import-sort": "^0.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint && cross-env CI=true yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"importSort": {
".js": {
"style": "module"
}
},
"dependencies": {
"cross-env": "^6.0.3",
"dotenv": "^8.1.0",
"dotenv-expand": "^5.1.0"
}
}