-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"seed": "node -r dotenv/config ./scripts/seed.js"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@tailwindcss/forms": "^0.5.7",
"@types/node": "20.14.10",
"@vercel/postgres": "^0.9.0",
"autoprefixer": "10.4.19",
"bcrypt": "^5.1.1",
"clsx": "^2.1.1",
"next": "^14.2.5",
"postcss": "8.4.39",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.4",
"typescript": "5.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vercel/style-guide": "^6.0.0",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "0.6.5"
},
"engines": {
"node": ">=18.17.0"
},
"name": "nextjs-dashboard",
"description": "This is the starter template for the Next.js App Router Course. It contains the starting code for the dashboard application.",
"version": "1.0.0",
"main": "next.config.js",
"keywords": [],
"author": "",
"license": "ISC"
}