reduced.to/package.json

32 lines
1.1 KiB
JSON
Raw Normal View History

2022-10-09 04:44:09 +03:00
{
2022-10-05 21:21:30 +03:00
"name": "url-shortener",
"version": "1.0.0",
"description": "URL shortener is a web application that reduces the length of link URL. So it's easier to remember, share and track.",
2022-10-05 21:21:30 +03:00
"scripts": {
"build:all": "npm run build:frontend && npm run build:backend && ncp ./backend/dist ./dist",
"build:frontend": "npm --prefix ./frontend run build:ssg",
"build:backend": "npm --prefix ./backend run build",
"postinstall": "npm run install:all && npm run build:all",
"install:all": "npm run install:frontend && npm run install:backend",
2022-10-09 06:09:35 +03:00
"install:frontend": "cd ./frontend && npm i",
"install:backend": "cd ./backend && npm i",
2022-10-06 23:16:39 +03:00
"start:prod": "node dist/main"
2022-10-05 21:21:30 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/origranot/url-shortener.git"
},
"author": "OriG",
"license": "ISC",
"bugs": {
"url": "https://github.com/origranot/url-shortener/issues"
},
"homepage": "https://github.com/origranot/url-shortener#readme",
"dependencies": {
2022-10-06 14:00:53 +03:00
"@nestjs/common": "^9.1.4",
"@nestjs/core": "^9.1.4",
"@nestjs/platform-express": "^9.1.4",
2022-10-07 22:54:20 +03:00
"cache-manager": "^5.0.0",
"ncp": "^2.0.0"
2022-10-05 21:21:30 +03:00
}
2022-10-09 06:08:21 +03:00
}