104 lines
2.9 KiB
JSON
104 lines
2.9 KiB
JSON
{
|
|
"name": "next-deploy",
|
|
"version": "1.2.3",
|
|
"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.2",
|
|
"ansi-escapes": "^4.3.1",
|
|
"archiver": "^5.0.2",
|
|
"aws-sdk": "^2.771.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.5",
|
|
"path-to-regexp": "^6.2.0",
|
|
"prettyoutput": "^1.2.0",
|
|
"ramda": "^0.27.1",
|
|
"regex-parser": "^2.2.11",
|
|
"s3-stream-upload": "^2.0.2",
|
|
"strip-ansi": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/preset-env": "^7.11.5",
|
|
"@babel/preset-typescript": "^7.10.4",
|
|
"@types/archiver": "^3.1.1",
|
|
"@types/aws-lambda": "^8.10.63",
|
|
"@types/execa": "^2.0.0",
|
|
"@types/fs-extra": "^9.0.2",
|
|
"@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.11.8",
|
|
"@types/path-to-regexp": "^1.7.0",
|
|
"@types/ramda": "^0.27.23",
|
|
"@types/react": "^16.9.52",
|
|
"@types/react-dom": "^16.9.8",
|
|
"@types/strip-ansi": "^5.2.1",
|
|
"@types/webpack": "^4.41.22",
|
|
"@typescript-eslint/eslint-plugin": "^4.4.0",
|
|
"@typescript-eslint/parser": "^4.4.0",
|
|
"eslint": "^7.11.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"husky": "^4.3.0",
|
|
"lerna": "^3.22.1",
|
|
"lint-staged": "^10.4.0",
|
|
"prettier": "^2.1.2",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,md,yml}": "prettier --write"
|
|
},
|
|
"resolutions": {
|
|
"node-fetch": "^2.6.1"
|
|
}
|
|
}
|