-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.66 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
{
"name": "virtualized-list",
"version": "0.0.1",
"description": "A virtualized list component in React virtual dom. Based on Brian vaughn's react-window.",
"main": "src/index.js",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "7.12.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"react": "^17.0.2",
"react-dom": "^16.8.6",
"webpack": "^5.36.1",
"webpack-dev-server": "3.11.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack",
"serve": "http-server ./dist"
},
"author": {
"name": "as1anh4wk",
"email": "[email protected]"
},
"devDependencies": {
"@babel/preset-flow": "^7.0.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "2.0.0-alpha.20",
"babel-preset-react": "^6.24.1",
"css-loader": "^5.2.4",
"flow-bin": "^0.150.0",
"file-loader": "^6.0.0",
"prettier": "^2.0.5",
"react-window": "^1.8.3",
"standard": "^14.0.2",
"webpack-cli": "^4.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/As1aNH4wK/Virtualizing-list-in-virtual-DOM.git"
}
}