-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1015 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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "URL Shortener for reducing the long urls to tiny urls",
"main": "index.js",
"engines": {
"node": "=14.0.0",
"npm": "=6.14.4"
},
"scripts": {
"dev": "concurrently -m=50 -n \"server,client\" -c \"cyan.bold,blue.bold\" \"npm run dev:server\" \"npm run dev:client\"",
"server:install": "cd server && npm install",
"client:install": "npm install --prefix client",
"all:install": "npm run server:install && npm run client:install",
"dev:server": "cd server && npm run dev",
"dev:client": "npm start --prefix client",
"build:client": "npm run build --prefix client",
"start": "npm run server:install && npm run dev:server",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run client:install && npm run build:client",
"install": "npm run all:install"
},
"author": "Kalyan Chinna Bathula",
"license": "MIT",
"dependencies": {
"concurrently": "^7.0.0"
},
"devDependencies": {}
}