-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 992 Bytes
/
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
{
"name": "url-shortening",
"version": "1.0.0",
"description": "Its an application which helps you to short your links in seconds",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rupali-codes/url-shortening.git"
},
"keywords": [
"url-shortening",
"nodejs",
"javascript",
"mongodb",
"shortener",
"shortly"
],
"author": "Rupali Haldiya",
"license": "ISC",
"bugs": {
"url": "https://github.com/rupali-codes/url-shortening/issues"
},
"homepage": "https://github.com/rupali-codes/url-shortening#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"node-fetch": "^3.2.10",
"validator": "^13.7.0"
}
}