-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.79 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
93
94
95
96
97
{
"name": "dumpstore-backend",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/server.js",
"dev": "npx tsc && nodemon dist/server.js",
"server":"tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node ./dist/server.js\"",
"vercel-build": "npm run build",
"postinstall": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/cheerio": "^0.22.35",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongodb": "^4.0.7",
"@types/node": "^22.7.4",
"@types/passport": "^1.0.16",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-twitter": "^1.0.40",
"@types/puppeteer": "^5.4.7",
"@types/user-agents": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsc-watch": "^6.2.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@types/cookie-parser": "^1.4.7",
"@types/multer": "^1.4.12",
"body-parser": "^1.20.3",
"cheerio": "^1.0.0",
"cloudinary": "^2.5.0",
"compromise": "^14.14.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-session": "^1.18.0",
"googleapis": "^144.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.9.0",
"mongoose": "^8.7.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.7",
"openai": "^4.68.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"puppeteer": "^23.9.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-anonymize-ua": "^2.4.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rimraf": "^6.0.1",
"user-agents": "^1.1.371"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}