This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.16 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
{
"name": "antd-react-extensions",
"version": "0.22.0",
"license": "MIT",
"repository": "https://github.com/wuifdesign/antd-react-extensions",
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"typings": "dist/lib/index.d.ts",
"engines": {
"node": ">=14"
},
"sideEffects": [
"dist/**/style/*",
"*.less"
],
"scripts": {
"prepare": "husky install",
"start": "npm run storybook",
"build": "node build.js",
"start-react-app": "react-scripts start",
"build-react-app": "react-scripts build && npm run analyze-react-app",
"analyze-react-app": "source-map-explorer 'build/static/js/*.js'",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public -o docs",
"build-storybook-log-to-file": "build-storybook -s public -o docs 2>> storybook-log.txt",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "react-scripts test --ci --watchAll=false",
"test:lint": "eslint \"./src/**/*.{js,ts,tsx}\"",
"test:lint:fix": "eslint \"./src/**/*.{js,ts,tsx}\" --fix",
"test:e2e:open": "cypress open",
"test:e2e:run": "cypress run"
},
"peerDependencies": {
"@ant-design/icons": "^4.6.0",
"antd": "^4.17.0",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"files": [
"dist"
],
"dependencies": {
"@dnd-kit/core": "^5.0.1",
"@dnd-kit/modifiers": "^5.0.0",
"@dnd-kit/sortable": "^6.0.0",
"clsx": "^1.1.1",
"deepmerge": "^4.2.2",
"papaparse": "^5.3.1",
"react-dropzone": "^12.0.2",
"react-router-dom": "^6.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/node-logger": "^6.4.19",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.19",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/tinycolor2": "^1.4.3",
"@types/uuid": "^8.3.4",
"antd": "^4.18.6",
"babel-loader": "8.1.0",
"copyfiles": "^2.4.1",
"cypress": "^9.4.1",
"eslint-config-wuif": "^0.0.7",
"husky": "^7.0.4",
"less": "^4.1.2",
"less-loader": "^7.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"rimraf": "^3.0.2",
"source-map-explorer": "^2.5.2",
"typescript": "4.4.*",
"web-vitals": "^2.1.4",
"webpack": "^4.44.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}