-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 938 Bytes
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
{
"name": "project-payments",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --bun --hot ./src/server.js",
"lint": "oxlint . --ext .ts,.tsx --fix",
"password-reset": "bun password-reset.js",
"register-user": "bun user-register.js"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@dr.pogodin/csurf": "^1.16.8",
"cookie-parser": "^1.4.7",
"cors": "2.8.5",
"date-fns": "4.1.0",
"ejs": "3.1.10",
"express": "5.2.1",
"express-rate-limit": "^8.2.1",
"express-session": "1.18.2",
"helmet": "^8.1.0",
"i18n": "^0.15.3",
"jose": "^6.1.3",
"multer": "^2.0.2",
"oxlint": "^1.38.0",
"passport": "0.7.0",
"passport-local": "1.0.0"
}
}