-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
126 lines (126 loc) · 3.65 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
{
"name": "react-select-virtualized",
"version": "5.6.0",
"description": "Select virtualized component using: react-select v4 + react-virtualized + react hooks",
"author": "guiyep",
"license": "MIT",
"repository": "guiyep/react-select-virtualized",
"main": "dist/index.min.js",
"engines": {
"node": ">=12",
"npm": ">=7"
},
"keywords": [
"react",
"select",
"virtualized",
"hooks",
"react hooks",
"performance",
"big"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"build-prod": "NODE_ENV=production BABEL_ENV=production rollup -c",
"start": "rollup -c -w",
"deploy": "gh-pages -d",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook -c .storybook",
"prepare": "husky install",
"lint": "yarn run eslint ./src/**/**/*.{js,jsx} && yarn run prettier ./src",
"eslint": "eslint --fix",
"prettier": "prettier --write",
"eslint2": "eslint",
"prettier2": "prettier",
"lint-s": "lint-staged",
"eyes-storybook": "eyes-storybook",
"bundle-size": "node ./bundlesize.js",
"audit-fix": "yarn-audit-fix",
"doc": "docsify serve ./docs"
},
"devDependencies": {
"@applitools/eyes-storybook": "^3.27.2",
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.7",
"@babel/preset-react": "7.16.7",
"@dump247/storybook-state": "1.6.1",
"@storybook/addon-actions": "6.4.9",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "6.4.9",
"@storybook/addons": "6.4.9",
"@storybook/react": "6.4.9",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-preset-minify": "0.5.1",
"docsify-cli": "^4.4.4",
"eslint": "8.6.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-standard": "5.0.0",
"extend-shallow": "3.0.2",
"faker": "^5.5.3",
"filesize": "^8.0.6",
"husky": "7.0.4",
"jest": "27.4.6",
"jest-css-modules": "2.1.0",
"lint-staged": "12.1.5",
"postcss": "^8.4.5",
"prettier": "2.5.1",
"prop-types": "15.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "5.7.3",
"react-testing-library": "8.0.1",
"react-virtualized": "9.22.5",
"rollup": "2.63.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-babel-minify": "10.0.0",
"rollup-plugin-cleaner": "1.0.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-gzip": "3.0.0",
"rollup-plugin-import-alias": "1.0.10",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"yarn-audit-fix": "^9.0.4"
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-select": "^5.8.0",
"react-virtualized": "^9.22.4"
},
"dependencies": {
"lodash.debounce": "4.0.8",
"regenerator-runtime": "^0.13.9"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Edge versions",
"last 2 Safari versions",
"last 2 Firefox versions"
],
"lint-staged": {
"*.{js,jsx}": [
"yarn run prettier",
"yarn run eslint"
]
}
}