iching-broker-level2/package.json
Christopher Hase 1d62a62f33
All checks were successful
ci / build (push) Successful in 1m6s
run locally part 1.0
2025-04-16 15:37:16 +02:00

29 lines
805 B
JSON

{
"name": "iching-broker",
"version": "1.0.0",
"main": "broker.js",
"scripts": {
"test": "jest --no-cache --force-exit",
"start:local": "tsc -p tsconfig.backend.json && tsc -p tsconfig.frontend.json && DEPLOY_MODE=local node dist/backend/server.js & npx http-server dist/frontend -p 8080 --cors --mime application/javascript=js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"description": "",
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/nodemailer": "^6.4.17",
"jest": "^29.7.0",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"http-server": "^14.1.1",
"nodemailer": "^6.10.0"
}
}