-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "tsx migrate.ts",
"rollback": "tsx rollback.ts",
"create-migration": "tsx create-migration.ts"
},
"dependencies": {
"@auth/kysely-adapter": "^1.4.1",
"@next/third-parties": "^14.2.5",
"@react-google-maps/api": "^2.19.2",
"@vercel/analytics": "^1.2.2",
"app-root-path": "^3.1.0",
"classnames": "^2.5.1",
"cookie": "^0.6.0",
"dompurify": "^3.1.6",
"isomorphic-dompurify": "^2.13.0",
"js-cookie": "^3.0.5",
"kysely": "^0.26.3",
"marked": "^13.0.2",
"moment": "^2.30.1",
"next": "^14.0.4",
"next-auth": "^4.24.6",
"nodemailer": "^6.9.11",
"openai": "^4.54.0",
"p-retry": "^6.2.0",
"pg": "^8.11.3",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"sass": "^1.77.8",
"slugify": "^1.6.6",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/dompurify": "^3.0.5",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/pg": "^8.11.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.0.1",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"dotenv-flow": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.0.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"tsx": "^4.16.5",
"typescript": "^5"
}
}