-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 850 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "rebench-rest-api",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"start": "node dist/server.js",
"prod": "npm run build && npm run start"
},
"repository": {
"url": "https://github.com/vatoth"
},
"author": "",
"license": "",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"pg": "^8.3.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.22.2",
"swagger-ui-express": "^4.1.4",
"tsoa": "^3.2.1",
"sequelize-typescript": "^1.1.0"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"concurrently": "^5.3.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}