-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.43 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "fuwei-virtual-list",
"version": "0.0.7",
"author": "fuwei <454575238@qq.com>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:fuwei-1993/virtual-list.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react",
"reactjs",
"virtual",
"window",
"windowed",
"list",
"scrolling",
"infinite",
"virtualized",
"virtual-list"
],
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c rollup.pro.config.js",
"start": "cross-env NODE_ENV=develop rollup -c rollup.dev.config.js -w",
"start:vite": "vite",
"lint": "eslint --ext .tsx,.ts --fix ./src",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn lint"
]
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.10",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.18.9",
"@rollup/plugin-alias": "3.1.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-typescript": "8.2.5",
"@types/lodash": "^4.14.178",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.2",
"classnames": "2.3.1",
"core-js": "^3.25.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^3.1.0",
"less": "^4.1.3",
"lint-staged": "^9.5.0",
"lodash": "^4.17.21",
"postcss": "8.3.6",
"postcss-nested": "^5.0.6",
"prettier": "^2.5.1",
"react-dom": "17.0.2",
"rimraf": "^3.0.2",
"rollup": "2.56.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ttypescript": "^1.5.13",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1",
"unplugin-auto-import": "^0.5.11",
"vite": "^3.2.3"
},
"peerDependencies": {
"@babel/runtime": "^7.18.9",
"core-js": "^3.25.0",
"react": "^17.0.2"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"core-js": "^3.25.0",
"react": "^17.0.2"
}
}