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
2020-07-05 22:30:21 -07:00

72 lines
2 KiB
JSON

{
"name": "next-deploy",
"version": "1.0.0",
"description": "Effortlessly deploy your Next.js application.",
"author": "Nidratech Ltd. <contact@nidratech.com>",
"main": "index.js",
"keywords": [
"next",
"deploy",
"serverless",
"nextjs",
"lambda"
],
"scripts": {
"test": "jest --runInBand",
"build": "lerna exec yarn",
"test:watch": "yarn test --watch --collect-coverage=false",
"publish": "lerna publish --conventional-commits",
"prerelease": "lerna publish --conventional-commits --conventional-prerelease",
"graduate": "lerna publish --conventional-commits --conventional-graduate",
"lint": "eslint ."
},
"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",
"@types/archiver": "^3.1.0",
"@types/aws-lambda": "^8.10.57",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.3",
"@types/klaw": "^3.0.1",
"@types/mime-types": "^2.1.0",
"@types/node": "^14.0.14",
"@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.18",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,md,yml}": "prettier --write"
},
"resolutions": {
"which": "^2.0.1"
}
}