-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.9 KB
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
{
"name": "ams-next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit -p tsconfig.json",
"start:prod": "NODE_ENV=production node .next/server.js",
"start:migrate:prod": "prisma migrate deploy && npm run start:prod"
},
"dependencies": {
"@faker-js/faker": "^8.0.2",
"@hookform/resolvers": "5.0.1",
"@prisma/client": "^5.11.0",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^5.28.8",
"@tanstack/react-query-devtools": "^5.26.3",
"@tanstack/react-table": "^8.15.0",
"@types/node": "20.11.25",
"@types/react": "18.2.70",
"@types/react-dom": "18.2.21",
"autoprefixer": "10.4.18",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"next": "14.1.3",
"next-auth": "^4.24.7",
"postcss": "8.4.35",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.2",
"react-icons": "^5.0.1",
"recoil": "^0.7.7",
"sharp": "0.33.2",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"sweetalert2": "11.19.1",
"tailwind-merge": "^2.2.1",
"tailwindcss": "3.4.1",
"typescript": "5.4.3",
"zod": "3.24.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.12",
"prisma": "^5.11.0"
},
"packageManager": "pnpm@8.10.2"
}