-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 984 Bytes
/
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
{
"name": "dekosodas-backend",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun ./src/index.ts",
"test": "bun --env-file=./.env.test test",
"dev": "bun --env-file=./.env.dev ./src/index.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/passport": "^1.0.16",
"@types/passport-http-bearer": "^1.0.41",
"@types/passport-local": "^1.0.38",
"dotenv": "^16.4.5",
"eslint": "^9.7.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@sendgrid/mail": "^8.1.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.0",
"ioredis": "^5.4.1",
"jose": "^5.6.3",
"mongodb": "^6.8.0",
"passport": "^0.7.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0"
}
}