-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@types/react": "^17.0.15",
"@types/react-native": "^0.64.12",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"eslint": "^7.32.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-native": "^0.64.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5",
"yorkie": "^2.0.0"
},
"scripts": {
"commit": "git cz",
"prebuild": "rimraf packages/*/lib",
"build": "lerna run build",
"prepublish-it": "yarn build",
"publish-it": "lerna publish",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"gitHooks": {
"commit-msg": "commitlint -e -V",
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"**/*.{md,json,less}": [
"prettier --write"
]
}
}