This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
next-deploy/package.json

101 lines
2.8 KiB
JSON

{
"name": "next-deploy",
"version": "1.1.1",
"description": "Effortless deployment for Next.js apps 🚀",
"author": "Nidratech Ltd. <egor@nidratech.com>",
"keywords": [
"next",
"deploy",
"nextjs",
"serverless",
"aws",
"github",
"lambda",
"lambda@edge",
"cloudfront",
"gh-pages"
],
"scripts": {
"dev": "lerna run --parallel build:watch",
"build": "lerna run build",
"clean": "lerna run clean",
"prepack": "yarn build",
"postinstall": "cd packages/aws-component && npx yarn --no-lockfile && cd ../aws-domain && npx yarn --no-lockfile && cd ../aws-lambda && npx yarn --no-lockfile && cd ../aws-lambda-builder && npx yarn --no-lockfile && cd ../cli && npx yarn --no-lockfile"
},
"bin": {
"next-deploy": "./packages/cli/bin/next-deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/lone-cloud/next-deploy"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lone-cloud/next-deploy/issues"
},
"homepage": "https://github.com/lone-cloud/next-deploy#readme",
"dependencies": {
"@serverless/core": "^1.1.2",
"@zeit/node-file-trace": "^0.8.1",
"ansi-escapes": "^4.3.1",
"archiver": "^5.0.0",
"aws-sdk": "^2.723.0",
"chalk": "^4.1.0",
"execa": "^4.0.3",
"figures": "^3.2.0",
"fs-extra": "^9.0.1",
"gh-pages": "^3.1.0",
"globby": "^11.0.1",
"klaw": "^3.0.0",
"klaw-sync": "^6.0.0",
"mime-types": "^2.1.27",
"minimist": "^1.2.5",
"next": "^9.5.0",
"path-to-regexp": "^6.1.0",
"prettyoutput": "^1.2.0",
"ramda": "^0.27.0",
"regex-parser": "^2.2.10",
"s3-stream-upload": "^2.0.2",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/archiver": "^3.1.0",
"@types/aws-lambda": "^8.10.59",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^9.0.1",
"@types/gh-pages": "^3.0.0",
"@types/klaw": "^3.0.1",
"@types/klaw-sync": "^6.0.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^14.0.27",
"@types/path-to-regexp": "^1.7.0",
"@types/ramda": "^0.27.13",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/strip-ansi": "^5.2.1",
"@types/webpack": "^4.41.21",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,md,yml}": "prettier --write"
}
}