-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "node-ts-express-mongo",
"version": "1.0.0",
"main": "./build/index.js",
"keywords": [
"yeoman-generator",
"typescript",
"node",
"nodejs",
"rest",
"restfull",
"api",
"builder",
"generator"
],
"description": "This is a prototype of Node.js Express Mongodb API using TypeScript.",
"author": "Pankaj Kr Yadav <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ypankaj007/node-ts-express-mongo/issues"
},
"homepage": "https://github.com/ypankaj007/node-ts-express-mongo#readme",
"scripts": {
"server": "tsc && nodemon ./build/index.js",
"start": "node ./build/index.js",
"ts:watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"src"
],
"dependencies": {
"@types/bcrypt": "^3.0.0",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.3",
"body-parser": "1.18.2",
"chalk": "^2.4.1",
"compression": "1.7.1",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"cron": "^1.3.0",
"crypto-js": "^3.1.9-1",
"cryptr": "^4.0.1",
"dotenv": "^4.0.0",
"express": "4.16.2",
"express-custom-responses": "^1.0.0",
"express-winston": "^2.5.1",
"helmet": "3.9.0",
"http": "0.0.0",
"http-errors": "^1.6.3",
"joi": "^14.0.6",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"log4js": "^4.0.2",
"mongoose": "5.7.7",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"node-gyp": "^3.8.0",
"nodemailer": ">=6.4.16",
"password-hash": "^1.2.2",
"path": "^0.12.7",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rotating-file-stream": "^1.4.0",
"sendotp": "^1.2.9",
"swagger-ui-express": "^4.0.1",
"ts-node": "^6.0.3",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.8.0"
},
"devDependencies": {
"@types/body-parser": "1.16.8",
"@types/cookie-parser": "1.4.1",
"@types/cors": "2.8.3",
"@types/express": "4.11.0",
"@types/mongoose": "4.7.32",
"@types/node": "8.5.5",
"nodemon": "1.14.7",
"tslint": "5.8.0",
"tslint-config-airbnb": "^5.8.0",
"typescript": "2.6.2"
}
}