-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.81 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
91
92
{
"name": "express-prisma-boilerplate",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"author": "Rishit",
"scripts": {
"start": "yarn build",
"dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.ts",
"prettier:fix": "prettier --write **/*.ts",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"prepare": "husky install",
"build": "rimraf build && tsc -p tsconfig.json",
"test": "NODE_ENV=test && NODE_OPTIONS=--experimental-vm-modules jest --forceExit"
},
"dependencies": {
"@aws-sdk/types": "^3.449.0",
"@prisma/client": "^5.3.1",
"@sentry/integrations": "^7.79.0",
"@sentry/node": "^7.79.0",
"@types/bcryptjs": "^2.4.4",
"@types/nodemailer": "^6.4.11",
"aws-sdk": "^2.1494.0",
"bcryptjs": "^2.4.3",
"bullmq": "^4.13.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.0.2",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"http-status": "^1.7.0",
"ioredis": "^5.3.2",
"joi": "^17.10.2",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.7",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pm2": "^5.3.0",
"redis": "^4.6.10",
"winston": "^3.10.0",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@jest/globals": "^29.7.0",
"@types/compression": "^1.7.3",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/express-session": "^1.17.10",
"@types/jest": "^29.5.8",
"@types/morgan": "^1.9.6",
"@types/node": "^20.7.1",
"@types/node-cron": "^3.0.11",
"@types/passport": "^1.0.13",
"@types/passport-jwt": "^3.0.10",
"@types/sinon": "^17.0.1",
"@types/supertest": "^2.0.13",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.4",
"@types/xss-filters": "^0.0.28",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"node-mocks-http": "^1.13.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prisma": "^5.3.1",
"sinon": "^17.0.1",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}