-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "server",
"type": "module",
"scripts": {
"api:start": "node dist/src/index",
"api:build": "cd api && swc src -d dist ./",
"api:build:w": "cd api && npm run api:build -- -w",
"api:start:w": "cd api && nodemon --exec \"node dist/src/index\"",
"client:start:w": "cd panel && vite",
"client:start": "cd panel && vite preview",
"client:build": "cd panel && tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"changeBaseurl": "cd panel && node client/scripts/changeBaseurl.js",
"css:build": "cd panel && npx tailwindcss -i src/assets/styles/index.css -o src/assets/styles/tailwind.css -w"
},
"dependencies": {
"@sequelize/core": "7.0.0-alpha.37",
"@sequelize/sqlite3": "7.0.0-alpha.41",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.0",
"@xterm/xterm": "^5.5.0",
"axios": "^1.7.2",
"chokidar": "^3.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"formidable": "^3.5.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-console-emulator": "^5.0.2",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1",
"react-terminal": "^1.4.4",
"sequelize": "^6.37.3",
"ws": "^8.18.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"yup": "^1.4.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/formidable": "^3.4.5",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.7.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.8",
"nodemon": "^3.1.4",
"typescript": "^5.5.3",
"vite": "^5.3.4"
}
}