forked from shihabmridha/nodejs-repository-pattern-and-ioc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.35 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
43
44
45
{
"name": "nodejs-repository-pattern-starter",
"version": "0.0.1",
"description": "A starter kit for nodejs web application using repository design patter",
"main": "app.js",
"scripts": {
"start": "node ./build/src/app.js",
"dev": "nodemon ./build/src/app.js",
"production": "NODE_ENV=production node ./build/src/app.js",
"test": "NODE_ENV=test LOG_LEVEL=debug jest --forceExit --silent ./build/test",
"coverage": "NODE_ENV=test LOG_LEVEL=debug jest --coverage --forceExit ./build/test/api",
"compile": "tsc -p ."
},
"author": "Shihab Mridha",
"license": "ISC",
"dependencies": {
"bcrypt": "5.0.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"inversify": "5.0.1",
"mongodb": "3.5.8",
"reflect-metadata": "0.1.13",
"validator": "12.2.0",
"winston": "3.2.1"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/compression": "1.7.0",
"@types/cors": "2.8.6",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.1",
"@types/jest": "^25.2.3",
"@types/mongodb": "3.5.20",
"@types/node": "10.12.9",
"@types/source-map-support": "0.5.1",
"@types/supertest": "2.0.8",
"@types/validator": "12.0.1",
"faker": "4.1.0",
"jest-junit-reporter": "^1.1.0",
"source-map-support": "0.5.16",
"supertest": "^4.0.2"
}
}