-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "next_template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"docker:build": "docker build -t next_template_img .",
"prisma:generate": "npx prisma generate --schema=./src/app/api/prisma/schema.prisma",
"prisma:push_indexes": "npx prisma db push --schema=./src/app/api/prisma/schema.prisma"
},
"keywords": [],
"author": "RedEagle Dave",
"license": "ISC",
"dependencies": {
"@nextui-org/react": "^2.2.10",
"framer-motion": "^10.2.4",
"next": "^14.1.3",
"next-auth": "^4.24.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20.11.28",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"postcss": "^8.4.36",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
}
}