-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.93 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "proxy-gateway",
"description": "Simple microservices API Gateway built with Typescript/ExpressJs with dynamic manageable routes",
"keywords": [
"gateway",
"managment",
"proxy",
"reverse gateway"
],
"author": "Jaouher Kharrat",
"license": "MIT",
"bugs": {
"url": "https://github.com/JaouherK/proxy-gateway/issues"
},
"homepage": "https://jaouherk.github.io/proxy-gateway/",
"main": "./src/server.ts",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "node -r ts-node/register ./src/server.ts --colors",
"start-inspect": "node --inspect=5858 -r ts-node/register ./src/server.ts",
"start:watch": "nodemon",
"build": "tsc",
"test-dependencies": "snyk test",
"test": "jest",
"test:coverage": "jest --coverage",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "3.5.18",
"@types/body-parser": "^1.17.0",
"@types/busboy": "^0.2.3",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-http-proxy": "^1.5.10",
"@types/helmet": "0.0.42",
"@types/jsonwebtoken": "^8.3.0",
"@types/mime-types": "^2.1.0",
"bcryptjs": "^2.4.3",
"bluebird": "3.5.1",
"body-parser": "^1.18.2",
"chalk": "^2.4.2",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"cron": "^1.7.2",
"debug": "~2.6.9",
"dotenv": "^6.0.0",
"error-handler": "^1.0.0",
"express": "^4.16.3",
"express-brute": "^1.0.1",
"express-brute-sequelize": "0.0.8",
"express-http-proxy": "^1.6.2",
"express-rate-limit": "^5.0.0",
"express-session": "^1.17.0",
"express-slow-down": "^1.0.1",
"helmet": "^3.23.3",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.4.0",
"morgan": "^1.9.0",
"mysql2": "^1.7.0",
"nodemon": "^2.0.4",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.22.3",
"sequelize-typescript": "^0.6.6-beta.1",
"snyk": "^1.685.0",
"swagger-jsdoc": "^4.0.0",
"swagger-parser": "^8.0.3",
"swagger-ui-express": "^4.1.4",
"typescript": "^3.9.7",
"uuid": "^3.2.1",
"uuid-v4": "^0.1"
},
"devDependencies": {
"@types/ejs": "^2.6.0",
"@types/jest": "^24.0.19",
"@types/morgan": "^1.9.1",
"@types/node": "^8.10.62",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"concurrently": "^3.5.1",
"jest": "^24.9.0",
"sequelize-mock": "^0.10.2",
"ts-jest": "^24.1.0",
"ts-node": "^3.3.0",
"tsc-watch": "^1.0.8",
"tslint": "^5.20.0"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"snyk": true
}