-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 778 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
{
"name": "url-shortener",
"version": "2.1.0",
"description": "Project for Url Shortening",
"main": "server.js",
"scripts": {
"setup:env": "npm install && npm install --prefix client",
"start": "node server",
"server": "nodemon server",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build --prefix client"
},
"author": "Nilanjan Deb",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"ejs": "^3.1.2",
"express": "^4.17.1",
"mongoose": "^5.9.13",
"shortid": "^2.2.15"
},
"devDependencies": {
"concurrently": "^5.2.0",
"dotenv": "^10.0.0",
"nodemon": "^2.0.3"
}
}