-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "sticky-palette",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "rome format src --write",
"lint": "rome check src",
"ci": "rome ci src",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"gen:schema": "supabase gen types typescript --linked > ./src/lib/schema.ts && rome format ./src/lib/schema.ts --write"
},
"dependencies": {
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.3.5",
"@supabase/auth-ui-shared": "^0.1.3",
"@supabase/supabase-js": "^2.11.0",
"@tailwindcss/line-clamp": "^0.4.2",
"jotai": "^2.0.3",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-icons": "^4.8.0",
"react-loader-spinner": "^5.3.4",
"react-router-dom": "^6.9.0",
"react-zoom-pan-pinch": "^3.0.2"
},
"devDependencies": {
"@testing-library/dom": "^9.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-c8": "^0.29.3",
"autoprefixer": "^10.4.14",
"jsdom": "^21.1.1",
"postcss": "^8.4.21",
"rome": "^11.0.0",
"supabase": "^1.42.7",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-pwa": "^0.14.4",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^0.29.3"
}
}