-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "jaqpot-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"generate:schema": "npx openapi-typescript ../jaqpot-api-v2/src/main/resources/openapi.yaml -o ./src/app/api.schema.d.ts"
},
"engines": {
"node": ">=18.17.0"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@nextui-org/react": "^2.4.2",
"date-fns": "^3.6.0",
"framer-motion": "^11.2.10",
"jwt-decode": "^4.0.0",
"next": "14.2.3",
"next-auth": "^5.0.0-beta.19",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"react-multi-email": "^1.0.23",
"recharts": "^2.12.7",
"sharp": "^0.33.4",
"swr": "^2.2.5"
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"jsdom": "^24.1.0",
"openapi-typescript": "^6.7.6",
"postcss": "^8",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}