-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 730 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 730 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
{
"name": "url-shortner",
"version": "1.0.0",
"description": "it accepts a long url and make it short .",
"main": "index.js",
"type": "module",
"scripts": {
"start": "tsc && nodemon index.js"
},
"author": "Muhammad Usama",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.10",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0",
"nodemon": "^3.1.1",
"short-unique-id": "^5.2.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/uuid": "^9.0.8"
}
}