-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.19 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
72
73
74
75
76
77
78
{
"name": "firestarter",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node -r tsconfig-paths/register dist/index.js",
"dev": "nodemon --watch \"src/**/*.ts\" --exec ts-node -r tsconfig-paths/register src/index.ts",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-s3": "^3.825.0",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.8.0",
"@types/cors": "^2.8.18",
"@types/express-serve-static-core": "^5.0.6",
"@types/lodash": "^4.17.17",
"@types/minimist": "^1.2.5",
"@types/morgan": "^1.9.9",
"@types/ms": "^2.1.0",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^6.4.17",
"@types/passport": "^1.0.17",
"bcrypt": "^6.0.0",
"cloudinary": "^2.6.1",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"google-auth-library": "^10.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"mongodb": "^6.16.0",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^2.0.1",
"nodemailer": "^7.0.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"redis": "^5.5.5",
"sharp": "^0.34.2",
"twilio": "^5.7.2",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.23",
"@types/passport-google-oauth20": "^2.0.16",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.2.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0"
}
}