server/package.json
2020-06-27 23:23:09 +02:00

22 lines
569 B
JSON

{
"dependencies": {
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.28",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.9.20",
"typescript": "^3.9.5"
},
"scripts": {
"test": "jest --verbose --detectOpenHandles",
"test-watch": "jest --verbose --watchAll",
"dev": "./node_modules/.bin/tsc --watch",
"serve": "./node_modules/.bin/nodemon dist/app.js",
"build": "./node_modules/.bin/tsc"
},
"main": "dist/index.js",
"devDependencies": {
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}