-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "aqua-minder",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"pushDB": "npx prisma db push",
"insertData": "node ./api-server/data/insertTestData.js",
"startAPI": "npx tsx ./api-server/app.ts"
},
"dependencies": {
"@prisma/client": "^5.5.2",
"@vitejs/plugin-react": "^4.1.0",
"@vitejs/plugin-react-swc": "^3.4.0",
"axios": "^1.6.0",
"express": "^4.18.2",
"formik": "^2.4.5",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.47.0",
"react-router-dom": "^6.17.0",
"vite": "^4.5.0",
"yup": "^1.3.2"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@types/express": "^4.17.19",
"@types/node": "^20.8.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.16",
"eslint": "^8",
"postcss": "^8.4.31",
"prisma": "^5.5.2",
"tailwindcss": "^3.3.5",
"typescript": "^5"
}
}