forked from refinedev/refine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "blog-refine-supabase-auth",
"version": "0.1.0",
"private": true,
"dependencies": {
"@refinedev/core": "^4.45.0",
"@refinedev/cli": "^2.16.17",
"@refinedev/react-router-v6": "^4.5.4",
"@refinedev/supabase": "^5.7.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^29.2.4",
"daisyui": "^3.5.1",
"react": "^18.0.0",
"react-daisyui": "^4.1.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.8.1",
"tailwindcss": "^3.0.11",
"web-vitals": "^1.1.1"
},
"devDependencies": {
"@types/node": "^18.16.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"typescript": "^4.7.4",
"prettier-plugin-tailwindcss": "^0.1.4",
"@vitejs/plugin-react": "^4.0.0",
"vite": "^4.3.1"
},
"scripts": {
"start": "refine dev",
"build": "tsc && refine build",
"preview": "refine start",
"test": "jest",
"refine": "refine"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}