-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 972 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
41
42
{
"name": "url-shortener",
"description": "A URL Shortening web service with NodeJS.",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"express-session": "^1.17.2",
"helmet": "^5.0.2",
"mongoose": "^6.3.0",
"morgan": "^1.10.0",
"shortid": "^2.2.16"
},
"devDependencies": {
"nodemon": "^2.0.15"
},
"scripts": {
"start": "node ./index.js",
"dev": "nodemon ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kadiryumlu/url-shortener.git"
},
"keywords": [
"url",
"shortener"
],
"author": {
"name": "Kadir Yumlu",
"email": "kadiryumlu@outlook.com",
"url": "https://kadiryumlu.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kadiryumlu/url-shortener/issues"
},
"homepage": "https://github.com/kadiryumlu/url-shortener#readme"
}