-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "goldenduck",
"version": "2.0.0",
"description": "Online banking platform for money management, investments, and essential service payments.",
"private": true,
"author": "Lycokat",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lycokat/GoldenDuck/issues"
},
"homepage": "https://github.com/Lycokat/GoldenDuck#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Lycokat/GoldenDuck.git"
},
"keywords": [
"nextjs",
"react",
"typescript"
],
"engines": {
"node": ">18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write . && next lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "prisma generate && prisma migrate dev"
},
"dependencies": {
"@headlessui/react": "1.7.18",
"@hookform/resolvers": "3.3.4",
"@prisma/client": "5.9.1",
"@react-email/components": "0.0.15",
"axios": "1.6.7",
"bcryptjs": "2.4.3",
"chart.js": "4.4.2",
"classnames": "2.5.1",
"http-status-codes": "2.3.0",
"jose": "5.2.2",
"jsonwebtoken": "9.0.2",
"next": "14.1.0",
"path-to-regexp": "6.2.1",
"react": "18.2.0",
"react-chartjs-2": "5.2.0",
"react-code-input": "3.10.1",
"react-credit-cards-2": "1.0.2",
"react-dom": "18.2.0",
"react-hook-form": "7.50.1",
"react-simple-typewriter": "5.0.1",
"react-slick": "0.30.2",
"resend": "3.2.0",
"sharp": "0.33.2",
"slick-carousel": "1.8.1",
"sweetalert2": "11.10.5",
"zod": "3.22.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "14.1.1",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/bcryptjs": "2.4.6",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "9.0.6",
"@types/node": "20.11.24",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@types/react-slick": "0.23.13",
"@typescript-eslint/eslint-plugin": "6.21.0",
"autoprefixer": "10.4.18",
"eslint": "8.57.0",
"eslint-config-next": "14.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.35",
"prettier": "3.2.5",
"prisma": "5.9.1",
"sass": "1.71.1",
"tailwindcss": "3.4.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}