-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.3 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
{
"name": "node-api-course",
"version": "1.0.0",
"description": "",
"scripts": {
"postinstall": "npm run build",
"build": "tsc",
"dev": "concurrently -k \"tsc -w\" \"nodemon --on-change-only dist/server.js\"",
"start": "npx pm2-runtime start pm2.yaml",
"test": "jest --coverage --verbose --passWithNoTests"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"amqplib": "^0.6.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.1.3",
"express-winston": "^4.0.3",
"got": "^11.5.1",
"helmet": "^3.23.3",
"joi": "^17.1.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.0",
"pg-format": "^1.0.4",
"pm2": "^4.4.0",
"rand-token": "^1.0.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.25",
"typescript": "^3.9.7",
"winston": "^3.3.3",
"winston-transport-sentry-node": "^0.6.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/csurf": "^1.9.36",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/express-rate-limit": "^5.0.0",
"@types/express-winston": "^4.0.0",
"@types/got": "^9.6.11",
"@types/helmet": "0.0.47",
"@types/jest": "^26.0.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.23",
"@types/pg": "^7.14.4",
"@types/pg-format": "^1.0.0",
"@types/redis": "^2.8.25",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@types/winston": "^2.4.4",
"concurrently": "^5.2.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"ts-jest": "^26.1.3"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
}
}