-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
{
"name": "window-table",
"version": "1.0.0",
"description": "Windowing Table for React based on React Window",
"author": "pupudu",
"license": "MIT",
"sideEffects": false,
"repository": "pupudu/window-table",
"main": "dist/index.js",
"module": "dist/window-table.esm.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"react-window-table",
"react-virtualized-table",
"window-table",
"infinite-scrolling",
"virtualized",
"table",
"data-table",
"fixed-data-table"
],
"scripts": {
"start": "docz dev",
"build": "tsdx build",
"docz:build": "docz build",
"prepublishOnly": "yarn build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint src"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react-window": "^1.8.5"
},
"peerDependencies": {
"react-window": "^1.0.0"
},
"devDependencies": {
"@types/faker": "^5.1.2",
"@types/jest": "^24.0.12",
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/react-window": "^1.7.1",
"babel-eslint": "^10.0.1",
"cross-env": "^5.1.4",
"docz": "^2.3.1",
"faker": "^5.1.0",
"fuse.js": "^3.4.4",
"identity-obj-proxy": "^3.0.0",
"polished": "^3.2.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.8.4",
"react-select": "^3.1.0",
"styled-components": "^4.2.0",
"stylestrap": "^0.18.1",
"tsdx": "^0.14.0",
"typescript": "^4.0.3"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}