Files
2024-09-30 15:32:50 +03:00

28 lines
635 B
JSON
Executable File

{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"dev": "ts-node-dev ./src/index.ts",
"lint": "eslint --ext .ts ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.5"
},
"dependencies": {
"express": "^4.18.2",
"uuid": "^9.0.0"
}
}