-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "cellular-conquest",
"version": "0.1.0",
"private": true,
"author": "Morgan Giraud",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && prettier --check .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"test": "jest",
"ci": "yarn lint && yarn typecheck && yarn test",
"db:gen": "supabase gen types typescript --linked > src/lib/database.types.ts && yarn format",
"db:diff:linked": "supabase db diff --linked",
"clean": "rm -rf .next/"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.7.2",
"@supabase/auth-ui-react": "^0.4.2",
"@supabase/supabase-js": "^2.26.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "10.4.14",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"next": "13.4.7",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"supabase": "^1.68.6",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "20.3.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-check-updates": "^16.10.13",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "5.1.3"
}
}