-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.68 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .js,.ts,",
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(ts|tsx)\"",
"test": "jest --watch",
"test:e2e": "playwright test",
"prepare": "husky install",
"update": "supabase gen types typescript --project-id umgltemlffceoehkynug > database.types.ts"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/dm-sans": "^5.0.17",
"@heroicons/react": "^2.0.18",
"@mui/material": "^5.14.19",
"@nextui-org/react": "^2.2.9",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"autoprefixer": "10.4.16",
"framer-motion": "^10.16.5",
"geist": "^1.1.0",
"husky": "^8.0.3",
"next": "latest",
"nodemailer": "^6.9.7",
"normalize.css": "^8.0.1",
"postcss": "^8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"tailwindcss": "3.3.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/node": "20.9.4",
"@types/nodemailer": "^6.4.14",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"encoding": "^0.1.13",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"supabase": "^1.115.4",
"typescript": "^5.3.2"
}
}