package.json (979B)
1 { 2 "name": "api", 3 "version": "1.0.0", 4 "description": "", 5 "main": "index.js", 6 "scripts": { 7 "test": "echo \"Error: no test specified\" && exit 1", 8 "prebuild": "rm -rf dist", 9 "build": "npm run build:code", 10 "build:code": "tsc", 11 "start": "node dist/index.js", 12 "start:build": "npm run build ; npm run start", 13 "start:dev": "nodemon -e js,ts -w src -x npm -- run start:build" 14 }, 15 "keywords": [], 16 "author": "", 17 "license": "ISC", 18 "dependencies": { 19 "cors": "^2.8.5", 20 "express": "^4.17.1", 21 "level-mem": "^6.0.1", 22 "levelgraph": "^3.0.0", 23 "module-alias": "^2.2.2", 24 "mongodb": "^4.2.1", 25 "morgan": "^1.10.0", 26 "readline": "^1.3.0", 27 "reflect-metadata": "^0.1.13", 28 "typedi": "^0.10.0", 29 "typescript": "^4.5.3", 30 "uuid": "^8.3.2" 31 }, 32 "devDependencies": { 33 "@types/node": "^16.11.12", 34 "nodemon": "^2.0.15" 35 }, 36 "_moduleAliases": { 37 "@common": "dist/common", 38 "@config": "dist/config" 39 } 40 }