-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 2.12 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
{
"name": "nodejs-gateway-typescript",
"author": "Evgeniy Poznyak",
"license": "MIT",
"description": "NodeJS API Gateway. Handling JWT and Microservices.",
"version": "1.0.0",
"private": true,
"main": "server.js",
"scripts": {
"build-ts": "rm -rf dist & tsc",
"start-node-build": "node ./dist/app.js",
"watch-ts-and-run": "tsc -w & nodemon ./dist/app.js",
"ts-node": "ts-node ./src/app.ts",
"test": "jest",
"test-watch": "jest --watch"
},
"dependencies": {
"@types/nodemailer": "^6.2.1",
"axios": "^0.19.0",
"bcrypt": "^5.0.0",
"config": "^3.0.1",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-async-errors": "^3.1.1",
"jest-config": "^24.8.0",
"joi": "^14.3.1",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.4.12",
"ts-jest": "^24.0.2",
"winston": "^3.2.1",
"winston-mongodb": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.5.5",
"@types/bcrypt": "^3.0.0",
"@types/config": "0.0.34",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.17",
"@types/joi": "^14.3.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/lodash": "^4.14.121",
"@types/mongoose": "^5.3.16",
"@types/node": "^12.6.9",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"cors": "latest",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"jest-cli": "^24.8.0",
"nodemailer": "^6.3.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}