-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 818 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 818 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,json,css,scss,html,md,graphql,yml,yaml}'"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.1",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-graphql": "^0.12.0",
"express-validator": "^7.3.1",
"graphql": "^15.10.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^9.0.0",
"multer": "^2.0.2",
"socket.io": "^4.8.1",
"validator": "^13.15.23"
},
"devDependencies": {
"@types/multer": "^2.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.7.1"
}
}