-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
121 lines (121 loc) · 3.84 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
{
"name": "react-functional-select",
"version": "5.0.0",
"description": "Micro-sized and micro-optimized select component for React.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"umd": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"license": "MIT",
"author": {
"name": "Matt Areddia",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/based-ghost/react-functional-select/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/based-ghost/react-functional-select.git"
},
"homepage": "https://master--625676b6922472003af898b4.chromatic.com",
"keywords": [
"react",
"react-components",
"react-functional-select",
"select",
"dropdown",
"styled-components",
"virtualization",
"windowing",
"multi-select",
"performance",
"functional"
],
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@storybook/addon-storysource": "^6.5.15",
"@storybook/addons": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/theming": "^6.5.15",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-plugin-styled-components": "^2.0.7",
"chromatic": "^6.14.0",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.1",
"react-window": "^1.8.8",
"rimraf": "^3.0.2",
"rollup": "^3.8.1",
"styled-components": "^5.3.6",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6",
"react-window": ">=1.8.5",
"styled-components": ">=4.4.0"
},
"scripts": {
"clean-build": "npm-run-all clean build",
"build": "tsc --outDir dist --declarationDir dist --declaration true --emitDeclarationOnly true && rollup --bundleConfigAsCjs -c",
"build-watch": "rollup -c -w",
"clean": "rimraf dist",
"typecheck": "tsc -p --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "cross-env NODE_ENV=test jest -c jest.config.js",
"test:watch": "cross-env NODE_ENV=test jest -c jest.config.js --watch",
"start": "run-s storybook",
"storybook": "start-storybook -c .storybook -p 9009 --no-manager-cache",
"build-storybook": "build-storybook -c .storybook -o storybook-static",
"lint": "eslint \"+(.storybook|__stories__|__tests__|config|src)/**/*.{ts,js}\"",
"chromatic": "chromatic --force-rebuild --auto-accept-changes --exit-zero-on-changes"
},
"dependencies": {
"@babel/runtime": "^7.20.7"
}
}