-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "taro-visualization",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"release": "node ./scripts/release.js"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@tarojs/taro": "^3.5.7",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"chalk": "^4.1.2",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"figlet": "1",
"fs-extra": "^11.1.1",
"husky": "^8.0.2",
"inquirer": "8",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^17.0.2",
"shelljs": "^0.8.5",
"typescript": "^4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{html,css}": [
"prettier --write"
],
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">=14.6.0"
},
"packageManager": "pnpm@7.30.5"
}