-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "jorbites",
"version": "0.5.5",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"format": "prettier --write 'app/**/*.{ts,tsx}' 'pages/**/*.{ts,tsx}' '__tests__/**/*.{ts,tsx}'",
"check-format": "prettier --check 'app/**/*.{ts,tsx}' 'pages/**/*.{ts,tsx}' '__tests__/**/*.{ts,tsx}'",
"vitest": "vitest run __tests__/unit_test/components __tests__/unit_test/pages",
"jest": "jest __tests__/unit_test/routes",
"cypress:open": "cypress open",
"cypress": "cypress run"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.17.0",
"@types/node": "20.2.5",
"@types/react": "18.3.1",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"date-fns": "^2.30.0",
"eslint": "8.41.0",
"eslint-config-next": "^14.2.5",
"eslint-plugin-unused-imports": "^3.2.0",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.0.2",
"i18next-http-backend": "^2.2.1",
"next": "^14.2.12",
"next-auth": "^4.24.7",
"next-cloudinary": "^6.6.2",
"nodemailer": "^6.9.14",
"postcss": "8.4.41",
"prettier-plugin-tailwindcss": "^0.6.5",
"query-string": "^8.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.44.2",
"react-hot-toast": "^2.4.1",
"react-i18next": "^12.3.1",
"react-icons": "^4.8.0",
"tailwindcss": "3.3.2",
"ts-node": "^10.9.2",
"typescript": "5.0.4",
"vite-tsconfig-paths": "^4.3.2",
"zustand": "^4.3.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/bcrypt": "^5.0.0",
"@types/jest-json-schema": "^6.1.4",
"@types/nodemailer": "^6.4.8",
"@vitejs/plugin-react": "^4.3.1",
"cypress": "^13.13.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-json-schema": "^6.1.0",
"jsdom": "^24.1.1",
"prisma": "^4.15.0",
"ts-jest": "^29.2.4",
"vitest": "^2.0.3"
}
}