-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 880 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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "An app to short lengthy urls",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index",
"dev": "env-cmd -f ./config/dev.env nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayushi0014/URL-shortener.git"
},
"author": "Ayushi Sharma",
"license": "ISC",
"bugs": {
"url": "https://github.com/ayushi0014/URL-shortener/issues"
},
"homepage": "https://github.com/ayushi0014/URL-shortener#readme",
"dependencies": {
"config": "^3.3.3",
"ejs": "^3.1.6",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"http-errors": "^1.8.0",
"mongoose": "^5.11.16",
"nodemon": "^2.0.7",
"shortid": "^2.2.16",
"valid-url": "^1.0.9"
}
}