{ "name": "next-deploy", "version": "0.0.1", "description": "Effortless deployment for Next.js apps.", "author": "Nidratech Ltd. ", "main": "index.js", "keywords": [ "next", "deploy", "serverless", "nextjs", "lambda", "cloudfront", "edge" ], "scripts": { "test": "jest --runInBand", "build": "lerna exec -- yarn", "test:watch": "yarn test --watch --collect-coverage=false", "publish": "lerna publish --conventional-commits", "prepublishOnly": "yarn test", "prerelease": "lerna publish --conventional-commits --conventional-prerelease", "graduate": "lerna publish --conventional-commits --conventional-graduate", "prepare": "yarn build-self", "build-self": "tsc -p tsconfig.build.json" }, "bin": { "next-deploy": "./dist/deploy.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", "devDependencies": { "@babel/plugin-proposal-class-properties": "^7.10.4", "@babel/preset-env": "^7.10.4", "@babel/preset-typescript": "^7.10.4", "@next-deploy/aws-cloudfront": "link:./packages/aws-cloudfront", "@next-deploy/aws-component": "link:./packages/aws-component", "@next-deploy/aws-lambda-builder": "link:./packages/aws-lambda-builder", "@types/archiver": "^3.1.0", "@types/aws-lambda": "^8.10.58", "@types/execa": "^2.0.0", "@types/fs-extra": "^9.0.1", "@types/jest": "^26.0.4", "@types/klaw": "^3.0.1", "@types/mime-types": "^2.1.0", "@types/node": "^14.0.18", "@types/path-to-regexp": "^1.7.0", "@types/ramda": "^0.27.7", "@types/react": "^16.9.41", "@types/react-dom": "^16.9.8", "@types/webpack": "^4.41.20", "@typescript-eslint/eslint-plugin": "^3.6.0", "@typescript-eslint/parser": "^3.6.0", "eslint": "^7.4.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.4", "husky": "^4.2.5", "jest": "^26.1.0", "jest-when": "^2.7.2", "lerna": "^3.22.1", "lint-staged": "^10.2.11", "prettier": "^2.0.5", "typescript": "^3.9.6" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts,md,yml}": "prettier --write" }, "resolutions": { "which": "^2.0.1" } }