-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "fleet-hawks-nodejs-express-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npx tsc",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/node": "^10.12.12",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^2.0.7",
"@types/swagger-ui-express": "^3.0.0",
"aws-sdk": "2.608.0",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^5.0.0-alpha.7",
"pm2": "^3.2.9",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"supertest": "^3.4.1",
"swagger-ui-express": "^4.0.2",
"tsc-watch": "^1.0.31",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5"
}
}