-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
139 lines (139 loc) · 3.8 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@dwqs/react-virtual-list",
"version": "1.0.0",
"description": "A tiny virtualization list component, supports variable height",
"author": "pomysky@gmail.com",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"scripts": {
"prepush": "npm run ilint -q && npm run test",
"dev": "npx cross-env NODE_ENV=development node ./build/dev-server.js",
"prod": "npx rimraf demo/dist && npx cross-env NODE_ENV=production npx webpack --config ./build/webpack.prod.config.js --progress --hide-modules",
"postprod": "mv ./demo/dist/index.html ./",
"build": "npx rimraf dist && npx cross-env NODE_ENV=production npx webpack --config ./webpack.build.config.js --progress --hide-modules",
"ilint": "npx standard",
"fix": "npx standard --fix",
"commitmsg": "commitlint -E GIT_PARAMS",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/dwqs/react-virtual-list.git"
},
"bugs": {
"url": "https://github.com/dwqs/react-virtual-list/issues"
},
"keywords": [
"react",
"virtualized",
"virtualization",
"react-virtual",
"react-virtualized",
"virtual-list",
"react-list",
"virtual",
"list",
"infinite",
"scrolling",
"dynamic-height",
"variable-height"
],
"files": [
"dist",
"package.json",
"README.md"
],
"dependencies": {
"lodash.throttle": "^4.1.1",
"resize-observer-polyfill": "^1.5.0"
},
"peerDependencies": {
"react": ">= 15.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.1.2",
"@commitlint/config-angular": "^7.1.2",
"autoprefixer": "^9.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.15",
"chalk": "^2.4.1",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"faker": "^4.1.0",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.3",
"my-ip": "^1.1.1",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"plugin-error": "^1.0.1",
"postcss-loader": "^3.0.0",
"postcss-safe-parser": "^4.0.1",
"progress-bar-webpack-plugin": "^1.11.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dev-utils": "^6.0.0-next.3e165448",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"standard": "^12.0.1",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-inline-manifest-plugin": "^4.0.1",
"webpack-md5-hash": "^0.0.6",
"webpack-merge": "^4.1.4"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"*.svg",
"*.less",
"dist",
"tests"
]
},
"husky": {
"hooks": {
"pre-commit": [
"standard"
]
}
},
"engines": {
"node": "> 8.1.4",
"npm": ">= 5.2.0"
},
"jest": {
"roots": [
"./tests"
],
"verbose": true,
"testRegex": ".test.js$"
}
}