-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.97 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"private": true,
"name": "react-start",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:zxeryu/react-start.git",
"author": "zx <[email protected]>",
"license": "MIT",
"workspaces": [
"@react-start/*"
],
"scripts": {
"start": "webpack serve",
"l-install": "lerna bootstrap",
"l-prepare": "tsc && lerna run build",
"l-release": "lerna version --conventional-commits",
"l-publish": "lerna publish from-git"
},
"dependencies": {
"@ant-design/icons": "^4.6.4",
"@ant-design/pro-card": "^1.18.6",
"@ant-design/pro-form": "^1.49.5",
"@ant-design/pro-layout": "^6.31.3",
"@ant-design/pro-table": "^2.59.1",
"@dnd-kit/core": "^3.1.1",
"@dnd-kit/sortable": "^4.0.0",
"@dnd-kit/utilities": "^2.0.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^5.0.0-beta.5",
"@material-ui/icons": "^5.0.0-beta.5",
"@reactorx/core": "^0.21.1",
"antd": "^4.17.0",
"axios": "^0.24.0",
"formik": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.3.0",
"rxjs": "^7.3.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-react-jsx": "^7.12.7",
"@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",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/history": "^4.7.9",
"@types/lodash": "^4.14.165",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.3.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-loader": "^8.2.1",
"css-loader": "^6.3.0",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"less": "^4.1.1",
"less-loader": "^10.0.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",
"style-loader": "^3.2.1",
"typescript": "^4.3.5",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"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"
]
}
}