forked from qiuweikangdev/taro-react-echarts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "taro-react-echarts",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clear": "rimraf packages/*/{dist,node_modules}",
"dev:h5": "cross-env NODE_ENV=dev pnpm update:pkg && turbo run dev:h5 --filter=demo",
"dev:weapp": "cross-env NODE_ENV=dev pnpm update:pkg && turbo run dev:weapp --filter=demo",
"build": "cross-env NODE_ENV=prod pnpm update:pkg && turbo run build:echarts --filter=taro-react-echarts",
"turbo:publish": "cross-env NODE_ENV=prod pnpm update:pkg && turbo run publish",
"update:pkg": "node ./scripts/update-pkg.js",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"lint": "eslint --fix \"**/*.{js,ts,tsx}\" ",
"prepare": "husky install",
"release": "node ./scripts/release.js",
"commit": "git cz"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"commander": "^9.4.1",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-git": "^1.3.11",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "latest",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"turbo": "latest",
"typescript": "^4.1.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{md,json}": "prettier --write"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}