-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.94 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.94 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
{
"name": "typescript-mongo-jwt-api",
"version": "1.0.0",
"description": "",
"dependencies": {
"@hapi/joi": "^17.1.1",
"amqplib": "^0.8.0",
"app-root-path": "^3.0.0",
"aws-sdk": "^2.889.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.5.0",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"mustache": "^4.2.0",
"node-cron": "^3.0.0",
"nunjucks": "^3.2.3",
"randomstring": "^1.1.5",
"redis": "^3.1.2",
"ts-mailgun": "^0.5.0",
"typescript": "^4.2.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/app-root-path": "^1.2.4",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.10",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^17.1.6",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.3.7",
"@types/mustache": "^4.1.2",
"@types/node": "^13.1.8",
"@types/nunjucks": "^3.1.4",
"@types/randomstring": "^1.1.6",
"@types/redis": "^2.8.29",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.3",
"mongoose": "^5.12.3",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^26.5.4"
},
"scripts": {
"start": "node dist/server.js",
"watch-serve": "nodemon dist/server.js",
"serve": "node dist/server.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "cross-env NODE_ENV=test jest --forceExit --verbose --detectOpenHandles --colors --coverage",
"watch-test": "npm run test -- --watchAll"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "Adebayo Mustafa",
"license": "ISC"
}