forked from akachintuko/devops-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.27 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.27 KB
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
{
"name": "fingo-ms-payments",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev src/index.ts ",
"start:prod": "node src/index.js ",
"build": "tsc --build",
"clean": "tsc --build --clean",
"unit:test": "jest --watchAll --no-cache --passWithNoTests",
"unit:test:ci": "jest --passWithNoTests",
"test": "jest --watchAll --no-cache --passWithNoTests",
"test:ci": "jest --passWithNoTests --forceExit"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./__test__/setup.ts"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cookie-session": "2.0.41",
"@types/cors": "2.8.7",
"@types/crypto-js": "3.1.47",
"@types/express": "4.17.8",
"@types/express-rate-limit": "5.1.0",
"@types/helmet": "0.0.48",
"@types/jsonwebtoken": "8.5.0",
"@types/mixpanel": "2.14.2",
"@types/multer": "1.4.4",
"@types/multer-s3": "2.7.8",
"@types/node-wit": "6.0.0",
"@types/pg": "7.14.5",
"@types/umzug": "2.2.3",
"africastalking": "0.5.2",
"aws-sdk": "^2.771.0",
"axios": "0.21.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-session": "1.4.0",
"cors": "2.8.5",
"crypto-js": "4.0.0",
"dotenv": "8.2.0",
"eslint": "7.20.0",
"express": "4.17.1",
"express-async-errors": "3.1.1",
"express-rate-limit": "5.1.3",
"express-validator": "6.6.1",
"helmet": "4.1.1",
"http-status-codes": "2.1.4",
"joi": "17.4.0",
"jsonwebtoken": "8.5.1",
"kraken": "0.4.0",
"mixpanel": "0.13.0",
"moment": "2.28.0",
"moment-timezone": "0.5.31",
"mongoose": "^5.12.11",
"multer": "1.4.2",
"multer-s3": "2.9.0",
"nats": "^2.0.4",
"node-nats-streaming": "0.3.2",
"node-wit": "6.0.1",
"nyc": "15.1.0",
"pg": "8.3.3",
"sequelize": "6.3.5",
"ts-node": "9.0.0",
"ts-node-dev": "1.0.0-pre.62",
"tslint": "6.1.3",
"typescript": "^3.9.7",
"umzug": "2.3.0"
},
"devDependencies": {
"@types/jest": "25.2.3",
"@types/node": "^14.17.5",
"@types/supertest": "^2.0.10",
"jest": "25.5.4",
"mongodb-memory-server": "^6.9.2",
"supertest": "^4.0.2",
"ts-jest": "25.5.1"
}
}