123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "herda",
- "private": true,
- "version": "v1.3.0",
- "description": "Keep on top of it all with Herda",
- "scripts": {
- "build": "tsc",
- "dev": "nodemon --watch src -e ts --exec 'ts-node src/index.ts'",
- "lint": "eslint --ext .ts src",
- "start": "node out/src/index.js",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "keywords": [],
- "author": "",
- "license": "SEE LICENSE IN LICENSE.md",
- "devDependencies": {
- "@types/cors": "^2.8.17",
- "@types/express": "^4.17.21",
- "@types/jsonwebtoken": "^9.0.5",
- "@types/node": "^20.10.3",
- "@typescript-eslint/eslint-plugin": "^6.13.2",
- "@typescript-eslint/parser": "^6.13.2",
- "eslint": "^8.55.0",
- "nodemon": "^3.0.2",
- "ts-node": "^10.9.1",
- "typescript": "^5.3.2"
- },
- "dependencies": {
- "@edge/misc-utils": "^1.0.4",
- "cors": "^2.8.5",
- "dotenv": "^16.3.1",
- "express": "^4.18.2",
- "jsonwebtoken": "^9.0.2",
- "mongodb": "^6.3.0"
- }
- }
|