-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.92 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.92 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "coursify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"email": "email dev",
"turbo": "next dev --turbo --show-all",
"lint": "eslint .",
"next-lint": "next lint",
"prepare": "husky install",
"fmt": "yarn prettier --write .",
"types": "npm run types:next && npm run types:deno && npm run fmt",
"types:next": "supabase gen types typescript --project-id hhrehffmdrcjqowwvgqg > lib/db/database.types.ts",
"types:deno": "supabase gen types typescript --project-id hhrehffmdrcjqowwvgqg > supabase/functions/_shared/database.types.ts",
"slink": "supabase link --project-ref hhrehffmdrcjqowwvgqg",
"static": "next export",
"ionic:build": "yarn build && yarn static",
"ionic:serve": "npm run start"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.409.0",
"@capacitor/android": "6.2.0",
"@capacitor/app": "6.0.2",
"@capacitor/cli": "6.2.0",
"@capacitor/core": "6.2.0",
"@capacitor/haptics": "6.0.2",
"@capacitor/ios": "6.2.0",
"@capacitor/keyboard": "6.0.3",
"@capacitor/status-bar": "6.0.2",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.0.18",
"@lexical/clipboard": "^0.21.0",
"@lexical/link": "^0.21.0",
"@lexical/list": "^0.21.0",
"@lexical/markdown": "^0.21.0",
"@lexical/react": "^0.21.0",
"@lexical/rich-text": "^0.21.0",
"@lexical/selection": "^0.21.0",
"@lexical/text": "^0.21.0",
"@lexical/utils": "^0.21.0",
"@react-email/button": "0.0.19",
"@react-email/components": "^0.0.31",
"@react-email/html": "0.0.11",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/auth-helpers-react": "^0.5.0",
"@supabase/supabase-js": "^2.33.1",
"@tailwindcss/container-queries": "^0.1.1",
"@types/canvas-confetti": "^1.6.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-tagsinput": "^3.20.0",
"@uiball/loaders": "^1.3.0",
"@vercel/analytics": "^1.0.2",
"canvas-confetti": "^1.6.0",
"export-to-csv": "^1.0.0",
"formik": "^2.4.4",
"lexical": "^0.21.0",
"next": "^15.1.2",
"next-themes": "^0.4.4",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^19.0.0",
"react-cookie": "^7.2.2",
"react-dom": "^19.0.0",
"react-email": "3.0.4",
"react-tagsinput": "^3.20.3",
"sass": "^1.66.1",
"sharp": "^0.33.5",
"tailwindcss-theme-swapper": "^0.12.0",
"typescript": "^5.2.2",
"use-child": "^1.0.0",
"yup": "^1.2.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.15",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.2",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.3.3"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"eslint ."
]
}
}