-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 944 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
34
35
36
37
38
39
{
"name": "url-shortener",
"version": "1.0.0",
"description": "Simple url shortener API.",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "nodemon index"
},
"author": "Shabash4off",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"flat": "^5.0.2",
"helmet": "^4.1.0",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.10.0",
"morgan": "^1.10.0",
"nanoid": "^3.1.12",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"require-dir": "^1.2.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4"
}
}