-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.03 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
{
"name": "map-gen",
"version": "0.1.0",
"private": true,
"scripts": {
"flask-dev": "FLASK_DEBUG=1 FLASK_ENV=development python3 -m flask --app api/index run -p 5328",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run flask-dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"postinstall": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.1",
"@excalidraw/excalidraw": "^0.17.6",
"@excalidraw/mermaid-to-excalidraw": "^1.1.0",
"@hello-pangea/dnd": "^16.6.0",
"@hookform/resolvers": "^3.9.0",
"@nextui-org/button": "^2.0.35",
"@nextui-org/react": "^2.4.3",
"@prisma/client": "^5.17.0",
"@radix-ui/react-label": "^2.1.0",
"@tabler/icons-react": "^3.11.0",
"@tanstack/react-query": "^5.51.5",
"@tanstack/react-query-devtools": "^5.51.5",
"@tanstack/react-table": "^8.19.3",
"@types/node": "20.14.11",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"concurrently": "^8.2.2",
"framer-motion": "^11.3.6",
"lucide-react": "^0.408.0",
"next": "^14.2.5",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"postcss": "8.4.39",
"radix-ui": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"sharp": "^0.33.4",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.6",
"typescript": "5.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "20.1.4",
"@types/react": "^18.3.3",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.17.0"
}
}