-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ditto",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"gen-schema": "npx supabase gen types typescript --project-id nmudcjshynedjpjithxj --schema public > lib/supabase/schema.ts",
"gen:theme-typings": "chakra-cli tokens ./styles/theme/index.ts",
"icon": "npx @svgr/cli --out-dir components/icons --typescript --ignore-existing public/assets"
},
"dependencies": {
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/font": "13.1.2",
"@sentry/nextjs": "^7.56.0",
"@supabase/supabase-js": "^2.4.1",
"@tanstack/react-query": "^4.24.4",
"@tanstack/react-query-devtools": "^4.24.10",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@vercel/analytics": "^0.1.11",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"eslint": "^8.32.0",
"eslint-config-next": "13.1.2",
"firebase": "^9.21.0",
"framer-motion": "^8.5.2",
"ical-generator": "^4.0.0",
"js-confetti": "^0.11.0",
"nanoid": "^4.0.1",
"next": "13.1.2",
"next-pwa": "^5.6.0",
"query-string": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.4",
"usehooks-ts": "^2.9.1",
"zod": "^3.20.2",
"zustand": "^4.3.2"
},
"devDependencies": {
"@chakra-ui/cli": "^2.3.0",
"@next/eslint-plugin-next": "^13.1.2",
"@svgr/webpack": "^6.5.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3"
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"eslint --fix",
"prettier --write",
"bash -c tsc --noEmit"
]
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}