-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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
{
"name": "kikao",
"version": "1.0.0",
"description": "Nodejs backend application written in Typescript",
"main": "dist/server.js",
"author": "John Philip",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn tsc",
"start": "yarn node ./dist/server.js",
"dev": "yarn run build && yarn run concurrently \"yarn run build -w\" \"yarn nodemon\"",
"format": "yarn prettier --write '*/**/*.ts'",
"lint": "yarn eslint '*/**/*.ts' -c eslint.config.mjs"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/multer": "^1.4.7",
"@types/passport": "^1.0.17",
"@types/pg": "^8.11.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"concurrently": "^7.0.0",
"drizzle-kit": "^0.30.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.8.8",
"typescript": "^4.5.5",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"@types/nodemailer": "^6.4.17",
"body-parser": "^1.19.1",
"cloudinary": "^1.35.0",
"compression": "^1.7.4",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"drizzle-orm": "^0.38.3",
"drizzle-zod": "^0.6.1",
"express": "^4.21.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.18.1",
"express-validator": "^6.14.3",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.0",
"multer": "1.4.5-lts.1",
"nodemailer": "^6.9.16",
"nodemon": "^2.0.15",
"openai": "^4.77.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.13.1",
"postgres": "^3.4.5",
"zod": "^3.21.4"
},
"engines": {
"node": ">=14.5.0"
}
}