forked from apideck-libraries/file-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.83 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
{
"version": "0.7.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && yarn build-tailwind",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "tsdx build && yarn build-tailwind",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-tailwind": "NODE_ENV=production npx tailwindcss -o ./dist/styles.css --minify"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"isomorphic-unfetch": "^3.1.0",
"react-dropzone": "^11.4.2",
"react-table": "^7.7.0",
"react-waypoint": "^10.1.0",
"swr": "^1.0.1"
},
"husky": {
"hooks": {
"pre-push": "tsdx lint && tsdx test"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"semi": false,
"trailingComma": "none"
},
"name": "@apideck/file-picker",
"author": "Jake Prins",
"publishConfig": {
"access": "public"
},
"module": "dist/file-picker.esm.js",
"size-limit": [
{
"path": "dist/file-picker.cjs.production.min.js",
"limit": "100 KB"
},
{
"path": "dist/file-picker.esm.js",
"limit": "100 KB"
}
],
"resolutions": {
"jest-environment-jsdom": "^26.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@rollup/plugin-node-resolve": "^13.0.4",
"@size-limit/preset-small-lib": "^5.0.3",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/dropzone": "^5.7.4",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-table": "^7.7.2",
"autoprefixer": "^10.3.4",
"babel-loader": "^8.2.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "4.3.8",
"jest-location-mock": "^1.0.9",
"postcss": "^8.3.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"size-limit": "^5.0.3",
"tailwindcss": "^2.2.15",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"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|scss|sass)$": "identity-obj-proxy"
}
}
}