-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.31 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
47
48
49
50
{
"name": "root",
"private": true,
"scripts": {
"create-package": "lerna create",
"publish": "lerna publish --conventional-commits -m \"chore(root): Publish packages\"",
"publish:canary": "lerna publish --force-publish --canary",
"test": "lerna run test",
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"add": "lerna add @pro-vision/pv-scripts --scope=",
"lint": " eslint packages",
"lint:fix": "eslint --fix packages",
"commit": "git-cz"
},
"devDependencies": {
"@types/eslint": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.1",
"cpy-cli": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-pv": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
}
},
"lint-staged": {
"*.js": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}