-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "challenge",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"prisma": {
"seed": "node prisma/seed.mjs"
},
"scripts": {
"db:up": "docker-compose up -d --remove-orphans",
"db:down": "docker-compose down",
"db:migrate": "npx prisma migrate deploy",
"db:seed": "npx prisma db seed",
"dev": "nodemon src/app.ts",
"start": "node dist/app.js",
"start-consumer": "node dist/tasks/consumer.js",
"build": "npx tsc --noEmit && node build.mjs",
"test": "npx jest --verbose --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@abraham/reflection": "^0.12.0",
"@prisma/client": "^4.12.0",
"bcrypt": "^5.1.0",
"bull": "^4.10.4",
"credit-card-type": "^9.1.0",
"csv-parser": "^3.0.0",
"date-fns": "^2.29.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-handlebars": "^7.0.4",
"express-session": "^1.17.3",
"hbs": "^4.2.0",
"helmet": "^6.0.1",
"http-errors": "^2.0.0",
"inversify": "^6.0.1",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/hbs": "^4.0.1",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.0",
"@types/mime-types": "^2.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"esbuild": "^0.17.12",
"esbuild-plugin-copy": "^2.1.1",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"nodemon": "^2.0.22",
"prisma": "^4.11.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}