-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "portfolio-v4",
"author": {
"name": "irsyad abdul hamid"
},
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} src/prisma/seed.ts",
"schema": "src/prisma/schema.prisma"
},
"scripts": {
"dev": "next dev -p 4000",
"build": "next build",
"postbuild": "next-sitemap",
"postinstall": "npx prisma generate",
"start": "next start",
"lint": "next lint",
"migrate": "npx prisma migrate dev",
"push": "npx prisma db push",
"seed": "npx prisma db seed"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.19.0",
"@sentry/nextjs": "^8.17.0",
"@tanstack/react-query": "^4.36.1",
"@vercel/speed-insights": "^1.1.0",
"aos": "^2.3.4",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.11",
"eslint": "8.46.0",
"eslint-config-next": "13.4.13",
"highlight.js": "^11.10.0",
"highlightjs-copy": "^1.0.5",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"ioredis": "^5.4.1",
"next": "13.4.13",
"next-sitemap": "^4.2.3",
"nextjs-google-analytics": "^2.3.3",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-bootstrap": "^2.10.4",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.0",
"react-i18next": "^14.1.2",
"sanitize-html": "^2.13.0",
"slugify": "^1.6.6",
"typed.js": "^2.1.0",
"typescript": "5.1.6",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/aos": "^3.0.7",
"@types/axios": "^0.14.0",
"@types/bootstrap": "^5.2.10",
"@types/node": "20.4.8",
"@types/nprogress": "^0.2.3",
"@types/react": "18.2.19",
"@types/react-dom": "18.2.7",
"@types/sanitize-html": "^2.11.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.0.0",
"prettier": "^3.3.2",
"prisma": "^5.19.0",
"ts-node": "^10.9.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}