-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 KB
/
package.json
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
46
{
"name": "sih-backend",
"version": "1.0.0",
"description": "This is the backend of our SIH Project. Made and maintained by Team Web Crawlers.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebCrawlers-exe/SIH-BACKEND.git"
},
"author": "Prasoon Soni",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebCrawlers-exe/SIH-BACKEND/issues"
},
"homepage": "https://github.com/WebCrawlers-exe/SIH-BACKEND#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"ipfs-api": "^26.1.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.8.1",
"mongoose": "^6.5.2",
"node-fetch": "2.0",
"nodemailer": "^6.7.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}