-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 KB
/
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
35
36
37
38
39
40
41
42
{
"name": "api-res-academy-v2",
"version": "1.0.0",
"description": "",
"main": "dist/src/app.js",
"scripts": {
"start": "nodemon ./dist/app.js",
"build": "npm run clean; tsc",
"build:watch": "npm run build -- -w",
"clean": "rm -r dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Geekshubs",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.16.2",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.3.2",
"inversify-logger-middleware": "^3.1.0",
"method-override": "^3.0.0",
"mongodb": "^3.3.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.19",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/express": "^4.17.1",
"concurrently": "^4.1.2",
"nodemon": "^1.19.2",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"wait-on": "^3.3.0"
},
"engines": {
"node": ">=10.0.0"
}
}