-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 834 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
{
"dependencies": {
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-server": "^14.1.1",
"mongodb": "^6.8.1",
"mongoose": "^8.6.0",
"npm-run-all": "^4.1.5"
},
"name": "url-shortner",
"version": "1.0.0",
"description": "This is a simple URL shortner app built with the CleanURI API. Please make sure to enable a browser CORS extension for this to work as this API doesn't have CORS headers in the API response",
"main": "index.js",
"type": "module",
"scripts": {
"test": "nodemon prac",
"client": "http-server ./public -p 5500",
"server": "nodemon server.js",
"db": "nodemon connectDb",
"dev": "npm-run-all --parallel client server"
},
"keywords": [],
"author": "",
"license": "ISC"
}