-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 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
{
"scripts": {
"backend:dev:tsc": "cd backend && tsc -w",
"backend:dev:serve": "cd backend && nodemon js/main.mjs 9091",
"frontend:dev": "cd frontend && vite",
"backend:build": "cd backend && tsc",
"frontend:build": "cd frontend && vite build",
"build": "npm run backend:build && npm run frontend:build",
"start": "cd backend && node js/main.mjs 9090"
},
"dependencies": {
"bootstrap": "^5.3.3",
"clipboard": "^2.0.11",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.2.0",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.9.8",
"openai": "^4.42.0",
"vanjs-core": "^1.5.0",
"vanjs-router": "^1.2.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/bootstrap": "^5.2.10",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/xml2js": "^0.4.14",
"nodemon": "^3.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.11"
}
}