generated from tobslob/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.41 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
{
"name": "task-service",
"version": "1.0.0",
"description": "This is a starter project for any application",
"main": "./src/app.ts",
"author": "Kazeem Oluwatobi Odutola",
"license": "MIT",
"scripts": {
"start": "node ./dist",
"start:dev": "nodemon ./dist",
"watch": "tsc --watch -p ./tsconfig.json",
"build": "tsc -p ./tsconfig.json",
"test": "jest --runInBand --detectOpenHandles --forceExit --passWithNoTests"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"@prisma/client": "^4.11.0",
"@types/axios": "^0.14.0",
"@types/date-fns": "^2.6.0",
"@types/multer": "^1.4.6",
"amqplib": "^0.6.0",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"bunyan": "^1.8.15",
"cloudinary": "^1.26.1",
"cors": "^2.8.5",
"datauri": "^3.0.0",
"date-fns": "^2.16.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"http-status-codes": "^2.1.2",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"ioredis": "^4.17.3",
"jest-matcher-utils": "^28.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"module-alias": "^2.2.2",
"ms": "^2.1.2",
"multer": "^1.4.2",
"prom-client": "^12.0.0",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"response-time": "^2.3.2",
"shortid": "^2.2.16",
"trim-request-body": "^1.0.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/amqplib": "^0.5.16",
"@types/bcrypt": "^3.0.0",
"@types/bunyan": "^1.8.6",
"@types/connect-redis": "^0.0.14",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/faker": "^5.5.6",
"@types/hapi__joi": "^15.0.4",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.161",
"@types/ms": "^0.7.31",
"@types/redis": "^2.8.27",
"@types/reflect-metadata": "^0.1.0",
"@types/response-time": "^2.3.4",
"@types/shortid": "^0.0.29",
"@types/sinon": "^10.0.2",
"@types/supertest": "^2.0.11",
"@types/uuid": "^3.4.4",
"faker": "^5.5.3",
"jest": "^29.5.0",
"nodemon": "^2.0.4",
"prisma": "^4.11.0",
"sinon": "^11.1.2",
"supertest": "^6.1.6",
"ts-jest": "^29.0.5",
"typescript": "^4.0.2"
},
"_moduleAliases": {
"@app": "./dist"
},
"prisma": {
"schema": "./src/data/database/schema.prisma"
}
}