-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"private": true,
"name": "echarts-start",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/zxeryu/echarts-start.git",
"author": "zx <[email protected]>",
"license": "MIT",
"workspaces": [
"@echarts-start/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "tsc && lerna run prepare",
"l-release": "lerna version --conventional-commits",
"l-publish": "lerna publish from-git",
"start": "cd example/demo-react && webpack serve",
"start-v": "cd example/demo-vue && webpack serve"
},
"dependencies": {
"echarts": "^5.0.2",
"lodash": "^4.17.20",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"vue": "^3.0.9"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/runtime-corejs3": "^7.12.5",
"@babel/types": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/echarts": "^4.9.6",
"@types/lodash": "^4.14.165",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.8.2",
"@vue/compiler-sfc": "^3.0.3",
"babel-loader": "^8.2.1",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0",
"pretty-quick": "^3.1.0",
"rollup": "^2.33.3",
"rollup-plugin-dts": "^2.0.0",
"rollup-plugin-vue": "^6.0.0",
"typescript": "^4.1.2",
"vue-loader": "^16.0.0",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 120,
"jsxBracketSameLine": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --quiet"
]
}
}