forked from 3lang3/react-vant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"private": true,
"packageManager": "pnpm",
"scripts": {
"build": "pnpm build --dir ./packages/react-vant",
"build:site": "pnpm build:site --dir ./packages/react-vant",
"site:deploy": "pnpm site:deploy --dir ./packages/react-vant",
"changelog": "lerna exec --scope react-vant yarn changelog",
"dev": "pnpm dev --dir ./packages/react-vant"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "react-vant-cli commit-lint"
}
},
"lint-staged": {
"*.{ts,tsx,js,less}": "prettier --write",
"*.{ts,tsx,js}": "eslint --fix",
"*.{css,less}": "stylelint --fix",
"package.json": "yarn sort-package-json"
},
"dependencies": {
"@react-vant/cli": "workspace:*"
},
"devDependencies": {
"@react-vant/fabric": "workspace:*",
"all-contributors-cli": "^6.20.0",
"eslint": "7.32.0",
"husky": "4.3.8",
"lint-staged": "12.0.2",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"sort-package-json": "1.53.1",
"stylelint": "13.13.1"
}
}