-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.95 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
{
"name": "qr_connect_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/server.ts",
"start": "node ./dist/server.js",
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.400.0",
"@bull-board/api": "^5.7.0",
"@bull-board/express": "^5.7.0",
"@types/mongoose": "^5.11.97",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"bullmq": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^5.0.0-beta.1",
"form-data": "^4.0.0",
"googleapis": "^126.0.1",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mailgun.js": "^9.2.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"mongoose": "^7.5.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"qrcode": "^1.5.3",
"redis": "^4.6.7",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"stripe": "^13.3.0",
"svix": "^1.4.12",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/json2csv": "^5.0.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.195",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^20.2.6",
"@types/qrcode": "^1.5.1",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}