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

107 lines
3.2 KiB
JSON

{
"name": "next-deploy",
"version": "0.2.0-alpha-0",
"description": "Effortless deployment for Next.js apps 🚀",
"author": "Nidratech Ltd. <egor@nidratech.com>",
"keywords": [
"next",
"deploy",
"nextjs",
"aws",
"github",
"lambda",
"cloudfront",
"github-pages"
],
"scripts": {
"dev": "lerna run --parallel build:watch",
"build": "lerna run build",
"clean": "lerna run clean",
"setup": "yarn && lerna exec -- yarn",
"prepack": "yarn build"
},
"bin": {
"next-deploy": "./packages/cli/dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nidratech/next-deploy"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nidratech/next-deploy/issues"
},
"homepage": "https://github.com/nidratech/next-deploy#readme",
"dependencies": {
"@next-deploy/aws-cloudfront": "link:node_modules/next-deploy/packages/aws-cloudfront",
"@next-deploy/aws-component": "link:node_modules/next-deploy/packages/aws-component",
"@next-deploy/aws-domain": "link:node_modules/next-deploy/packages/aws-domain",
"@next-deploy/aws-lambda": "link:node_modules/next-deploy/packages/aws-lambda",
"@next-deploy/aws-lambda-builder": "link:node_modules/next-deploy/packages/aws-lambda-builder",
"@next-deploy/aws-s3": "link:node_modules/next-deploy/packages/aws-s3",
"@next-deploy/github": "link:node_modules/next-deploy/packages/github",
"@serverless/aws-iam-role": "^1.0.0",
"@serverless/aws-lambda-layer": "^1.0.0",
"@serverless/core": "^1.1.2",
"@zeit/node-file-trace": "^0.7.0",
"ansi-escapes": "^4.3.1",
"archiver": "^4.0.2",
"aws-sdk": "^2.713.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.4.4",
"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.23",
"@types/path-to-regexp": "^1.7.0",
"@types/ramda": "^0.27.11",
"@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.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,md,yml}": "prettier --write"
}
}