-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:example": "yarn --cwd example build:web",
"build:site": "yarn run build && lerna run build:site --scope=@pingtou/rn-vant",
"build": "lerna run build",
"bootstrap": "yarn --cwd example && yarn",
"changeset": "changeset",
"ci:publish": "changeset publish",
"ci:version": "changeset version",
"commit": "git cz",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^13.2.0",
"@types/jest": "^26.0.23",
"@youngjuning/eslint-config": "^1.4.0",
"@youngjuning/prettier-config": "^1.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-import": "^1.13.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.0.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"expo-modules-core": "^0.11.5",
"husky": "^3.1.0",
"jest": "^26.6.3",
"jest-expo": "^46.0.1",
"lerna": "5.4.3",
"lint-staged": "13.0.3",
"metro-react-native-babel-preset": "^0.72.1",
"typescript": "^4.4.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "node scripts/verify-commit-msg.js",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add ."
]
}
}