-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
{
"name": "a-safe-technical-test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"cypress:open": "cypress open"
},
"dependencies": {
"@heroicons/react": "2.1.5",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-slot": "1.1.0",
"@vercel/postgres": "0.10.0",
"@vercel/postgres-kysely": "^0.10.0",
"class-variance-authority": "^0.7.0",
"clsx": "2.1.1",
"kysely": "0.27.4",
"lucide-react": "0.453.0",
"next": "15.0.0",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "19.0.0-beta-26f2496093-20240514",
"recharts": "^2.13.2",
"tailwind-merge": "2.5.4",
"zod": "3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/node": "20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "7.0.0",
"bcrypt": "5.1.1",
"cypress": "^13.15.1",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-next": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "8",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.6",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "1.0.7",
"ts-node": "^10.9.2",
"typescript": "5"
},
"pnpm": {
"overrides": {
"react-is": "19.0.0-beta-26f2496093-20240514"
}
}
}