-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 KB
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
{
"name": "antd-virtual-table",
"version": "1.0.8",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/AlexAPPi/antd-virtual-table.git"
},
"style": "dist/style.css",
"typings": "dist/src/bundle.d.ts",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"start": "react-scripts start",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@types/react-window": "^1.8.5",
"antd": "^5.3.0",
"fast-deep-equal": "^3.1.3",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"react-window": "^1.8.8",
"rollup": "^3.18.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-import-css": "^3.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"react": "^18.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}