-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.28 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
107
108
109
110
{
"name": "recycle-ui",
"version": "0.1.0",
"author": {
"name": "EruditionTu",
"email": "[email protected]",
"url": "https://github.com/EruditionTu"
},
"contributors": [],
"description": "A React hooks functional component developed based on React",
"title": "Recycle UI",
"scripts": {
"dev": "dumi dev",
"build:site": "rimraf doc-site && dumi build",
"preview:site": "npm run build:site && serve doc-site",
"husky:prepare": "husky install",
"build:types": "tsc",
"build:umd": "webpack --mode production --env target=umd",
"build:esm": "webpack --mode production --env target=esm",
"build:cjs": "webpack --mode production --env target=cjs",
"lint:fix": "eslint --quiet --fix",
"lint:format": "prettier --loglevel warn --write",
"lint": "lint-staged",
"init:component": "node script/create-component-cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/EruditionTu/RecycleUI",
"branch": "master"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/config-conventional": "^17.1.0",
"@svgr/webpack": "^6.5.1",
"@types/invariant": "^2.2.35",
"@types/lodash": "^4.14.187",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.16",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.40.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"classname": "^0.0.0",
"commitlint": "^17.1.2",
"css-loader": "^6.7.3",
"cz-conventional-changelog": "^3.3.0",
"dumi": "^1.1.49",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.2",
"less-loader": "^11.1.0",
"lint-staged": "^12.5.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"prettier": "^2.7.1",
"serve": "^13.0.2",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpackbar": "^5.0.2"
},
"dependencies": {
"@ant-design/icons": "^4.0.0",
"classnames": "^2.3.2",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.1",
"react-fast-marquee": "^1.3.5",
"react-transition-group": "^4.4.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"npm run lint:format"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"chrome >= 80",
"firefox >= 74",
"safari >= 10",
"edge >= 80",
"ios >= 10",
"ie >= 8"
]
}