-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"name": "my-nextjs-project",
"version": "1.0.0",
"description": "NextJS project template by Rafly Maulana",
"main": "index.js",
"repository": "https://github.com/raflymln/nextjs-template.git",
"bugs": "https://github.com/raflymln/nextjs-template",
"author": {
"name": "Rafly Maulana",
"email": "[email protected]",
"url": "https://raflymaulana.me"
},
"homepage": "https://raflymaulana.me",
"license": "MIT",
"private": true,
"contributors": [],
"scripts": {
"dev": "start http://localhost:3000 && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"git:prepare": "husky install"
},
"prettier": "@raflymln/prettier-config",
"eslintConfig": {
"extends": [
"@raflymln/eslint-config"
]
},
"dependencies": {
"@prisma/client": "^5.13.0",
"@tailwindcss/typography": "^0.5.13",
"clsx": "^2.1.1",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@raflymln/eslint-config": "^1.2.1",
"@raflymln/prettier-config": "^1.0.0",
"@types/node": "20.12.11",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "9.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prisma": "^5.13.0",
"prisma-case-format": "^2.2.1",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
}
}