-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
{
"name": "wildlife-minds",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"test": "start-server-and-test dev http://localhost:3000 cypress:headless",
"test:ui": "start-server-and-test dev http://localhost:3000 cypress",
"dev:supabase": "supabase start && next dev",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"db:reset": "supabase db reset",
"db:migration:new": "supabase migration new",
"supabase:status": "supabase status",
"mail:view": "open http://localhost:54324",
"studio:view": "open http://localhost:54323",
"db:push-staging": "cp supabase/config.staging.toml supabase/config.toml && supabase db push && cp supabase/config.toml supabase/config.toml",
"db:push-prod": "cp supabase/config.prod.toml supabase/config.toml && supabase db push && cp supabase/config.toml supabase/config.toml"
},
"dependencies": {
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.16",
"framer-motion": "^11.15.0",
"next": "^15.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.5.1",
"react-icons": "^5.4.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cypress": "^13.17.0",
"cypress-axe": "^1.5.0",
"eslint": "^9",
"eslint-config-next": "^15.2.0",
"postcss": "^8",
"start-server-and-test": "^2.0.9",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}