Files
matrix-backend/package.json
T
2024-11-21 11:29:17 +01:00

33 lines
772 B
JSON

{
"name": "matrix-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"start-local": "tsc && 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",
"dotenv": "^16.4.4",
"express": "5.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"ws": "8.17.1"
},
"devDependencies": {
"prettier": "^3.2.5"
}
}