-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "flodiary",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/main.js",
"dev": "nodemon",
"build": "tsc && tsc-alias",
"build:watch": "tsc -w & tsc-alias -w",
"deploy": "vercel deploy && vercel --prod"
},
"author": "Edward Appiah",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/connect-mongodb-session": "^2.4.8",
"@types/express-session": "^1.18.2",
"@types/jsonwebtoken": "^9.0.10",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"bcrypt": "^6.0.0",
"connect-mongodb-session": "^5.0.0",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"express-session": "^1.18.2",
"helmet": "^8.1.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.4",
"redis": "^5.6.1",
"rollbar": "^2.26.4",
"vercel": "^44.5.5",
"winston": "^3.17.0"
}
}