-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 931 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 931 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
36
37
38
39
{
"name": "authentication",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon dist/app.js",
"build": "tsc",
"start": "node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.5",
"@types/validator": "^13.12.2",
"copyfiles": "^2.4.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"dependencies": {
"@vercel/blob": "^0.27.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.3",
"multer": "^1.4.5-lts.1",
"validator": "^13.12.0"
}
}