forked from supabase/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.34 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
{
"name": "@supabase/ui",
"version": "0.1.3",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"sideEffects": false,
"source": "src/index.tsx",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build-watch": "NODE_ENV=production rollup -c -w",
"test": "react-scripts test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:icons": "node --experimental-modules internals/populate-icons.js",
"typedoc:json": "typedoc --json spec/spec.json --mode modules --includeDeclarations --excludeExternals"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.1",
"react-dom": "^16.13.1 || ^17.0.1"
},
"resolutions": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"dependencies": {
"lodash": "^4.17.20",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@headlessui/react": "^1.0.0",
"@radix-ui/react-popover": "^0.1.0",
"@radix-ui/react-context-menu": "^0.1.0",
"@radix-ui/react-dialog": "^0.1.0",
"@radix-ui/react-dropdown-menu": "^0.1.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@storybook/addon-actions": "^6.2.2",
"@storybook/addon-essentials": "^6.2.2",
"@storybook/addon-links": "^6.2.2",
"@storybook/react": "^6.2.2",
"@supabase/supabase-js": "^1.21.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.7",
"@types/lodash": "^4.14.172",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-macros": "^2.8.0",
"css-loader": "^5.0.1",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.35",
"postcss-import": "^12.0.1",
"postcss-modules-values": "^4.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.8",
"react-hot-toast": "^2.0.0",
"react-markdown": "^5.0.3",
"react-scripts": "^4.0.3",
"react-transition-group": "^4.4.1",
"remark-gfm": "^1.0.0",
"rollup": "^2.28.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss-modules": "^2.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"storybook-dark-mode": "^1.0.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1",
"typedoc": "^0.19.1",
"typescript": "4.2.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!react-feather)"
]
}
}