forked from petyosi/react-virtuoso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "react-virtuoso",
"sideEffects": false,
"version": "0.17.5",
"homepage": "https://virtuoso.dev",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/react-virtuoso.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"devDependencies": {
"@types/faker": "^4.1.9",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.144",
"@types/react": "16.9.41",
"@types/react-dom": "^16.9.6",
"@types/react-test-renderer": "^16.9.2",
"faker": "^4.1.0",
"husky": "^4.2.5",
"parcel": "^1.12.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"tsdx": "^0.13.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"resize-observer-polyfill": "^1.5.1",
"tslib": "^1.11.1"
}
}