-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 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
65
66
{
"name": "vpn-manager",
"version": "0.1.0",
"description": "VPN Manager",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:prod": "node server.js",
"seed": "node prisma/seed.js",
"start:migrate:prod": "npx --yes prisma migrate deploy --preview-feature && npm run start:prod",
"migration": "prisma migrate deploy",
"lint": "next lint"
},
"dependencies": {
"@auth/core": "^0.35.3",
"@auth/prisma-adapter": "^2.5.3",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.0",
"@mui/icons-material": "^6.1.1",
"@mui/lab": "6.0.0-beta.10",
"@mui/material": "^6.1.1",
"@mui/material-nextjs": "^6.1.1",
"@prisma/client": "^5.20.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"next": "15.0.0-rc.0",
"next-auth": "^5.0.0-beta.22",
"node-ssh": "^13.2.0",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-hook-form": "^7.53.0",
"ssh2": "^1.16.0",
"zod": "^3.23.8",
"zsa": "^0.6.0",
"zsa-react": "^0.2.3"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@next/eslint-plugin-next": "15.0.0-rc.0",
"@rocketseat/eslint-config": "^2.2.2",
"@types/bcryptjs": "^2.4.6",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/ssh2": "^1.15.1",
"eslint": "^9.11.1",
"eslint-config-next": "15.0.0-rc.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"file-loader": "^6.2.0",
"node-loader": "^2.0.0",
"prettier": "3.3.3",
"prisma": "^5.20.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}