2024-05-29 18:54:49 +01:00

34 lines
802 B
JSON

{
"name": "webapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "tsc-watch --noClear --onsuccess \"node dist/server.js\"",
"client": "webpack serve",
"start": "npm-run-all --parallel server client"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.20",
"npm-run-all": "^4.1.5",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@types/node": "^20.6.1",
"bootstrap": "^5.3.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.1.0",
"http-proxy": "^1.18.1"
}
}