forked from clauderic/react-tiny-virtual-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.35 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
{
"name": "react-small-virtual-list",
"version": "2.3.1",
"description": "A tiny but mighty list virtualization component, with zero dependencies 💪",
"sideEffects": false,
"author": {
"name": "Igor Matias",
"email": "matyas.igor@gmail.com"
},
"user": "matyas-igor",
"homepage": "https://github.com/matyas-igor/react-small-virtual-list",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/matyas-igor/react-small-virtual-list.git"
},
"bugs": {
"url": "https://github.com/matyas-igor/react-small-virtual-list/issues"
},
"keywords": [
"react",
"reactjs",
"react-component",
"virtual",
"list",
"virtualize",
"virtualized",
"virtualization"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release": "yarn build && np --no-2fa",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "16.x"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"module": "dist/react-small-virtual-list.esm.js",
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-docs": "^6.0.28",
"@storybook/addon-storysource": "^6.0.28",
"@storybook/addons": "^6.0.28",
"@storybook/react": "^6.0.28",
"@types/jest": "^20.0.8",
"@types/prop-types": "^15.5.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.3.0",
"np": "^6.5.0",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"ts-loader": "^8.0.3",
"tsdx": "^0.13.3",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"dependencies": {
"prop-types": "^15.5.7"
}
}