Files
matrix-backend/package.json
T
StarAppeal 1be430c645 Revert "remove pm2"
This reverts commit d3794f3d7c.
2024-11-26 10:27:44 +01:00

39 lines
994 B
JSON

{
"name": "matrix-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "pm2 start dist/index.js --name 'matrix-backend'",
"start-local": "tsc && cross-env NODE_ENV=development node dist/index.js",
"clean": "rimraf dist",
"build": "npm run clean & tsc",
"test": "echo \"Error: no test specified, please add them later\""
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.19",
"@types/ws": "^8.5.10",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express": "5.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.2",
"openweather-api-node": "^3.1.5",
"pm2": "^5.4.3",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"ws": "8.17.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"cross-env": "^7.0.3",
"prettier": "^3.2.5"
}
}