-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.15 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": "fork",
"version": "0.0.1",
"description": "API Gateway",
"private": true,
"main": "index.js",
"scripts": {
"dev": "nodemon --watch \"src/\" --exec \"sucrase-node src/server/init.ts\" -e ts",
"devts": "nodemon --watch \"src/\" --exec \"ts-node src/server/init.ts\" -e ts",
"test": "jest --no-cache",
"build": "tsc",
"prod": "npm run build && node dist/server/init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sombratwo/Fork.git"
},
"keywords": [
"API",
"Gateway"
],
"author": "Leonardo Lucas dos Santos",
"license": "ISC",
"bugs": {
"url": "https://github.com/sombratwo/Fork/issues"
},
"homepage": "https://github.com/sombratwo/Fork#readme",
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/express-http-proxy": "^1.5.3",
"@types/helmet": "^0.0.43",
"@types/mongoose": "^5.3.26",
"@types/morgan": "^1.7.35",
"@types/restify": "^7.2.9",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-http-proxy": "^1.5.1",
"helmet": "^3.16.0",
"inversify": "^5.0.1",
"mongoose": "^5.5.3",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.13",
"restify": "^8.3.1",
"server-port": "^0.0.12"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"nodemon": "^1.18.10",
"prettier": "^1.17.0",
"sucrase": "^3.10.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.1",
"ts-node": "^8.0.3",
"typescript": "^3.4.1"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}