-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 772 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 772 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
{
"name": "server-hackathon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/index.js",
"start": "node ./src/index.js",
"lint": "eslint src --ext js --report-unused-disable-directives --max-warnings 0 --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"express": "^4.18.2",
"firebase-admin": "^12.0.0",
"google-auth-library": "^9.4.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.0",
"multer": "1.4.5-lts.1",
"swagger-ui-express": "5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"eslint": "^8.56.0",
"nodemon": "^3.0.3"
}
}