UNPKG

next-lazy-hydrate

Version:

A template for creating npm packages using TypeScript and VSCode

94 lines (93 loc) 2.33 kB
{ "name": "next-lazy-hydrate", "version": "1.1.0", "description": "A template for creating npm packages using TypeScript and VSCode", "main": "./lib/index.js", "files": [ "lib/**/*" ], "scripts": { "build": "tsc", "clean": "rm -rf ./lib/", "cm": "cz", "coverage": "codecov", "lint": "eslint ./src/ --fix", "prepare": "husky install", "semantic-release": "semantic-release", "test:watch": "jest --watch", "test": "jest --coverage --passWithNoTests", "typecheck": "tsc --noEmit" }, "repository": { "type": "git", "url": "git+https://github.com/thanhlmm/next-lazy-hydrate.git" }, "license": "MIT", "author": { "name": "Thanh Le", "email": "mihthanh27@gmail.com", "url": "https://github.com/thanhlmm" }, "engines": { "node": ">=12.0" }, "keywords": [ "boilerplate", "template", "typescript", "vscode", "jest", "husky", "commitizen", "semantic-release", "codecov" ], "bugs": { "url": "https://github.com/thanhlmm/next-lazy-hydrate/issues" }, "homepage": "https://github.com/thanhlmm/next-lazy-hydrate#readme", "devDependencies": { "@ryansonshine/commitizen": "^4.2.8", "@ryansonshine/cz-conventional-changelog": "^3.3.4", "@types/jest": "^28.1.1", "@types/node": "^17.0.40", "@types/react": "^17.0.2", "@types/react-dom": "^17.0.2", "@typescript-eslint/eslint-plugin": "^4.22.0", "@typescript-eslint/parser": "^4.22.0", "codecov": "^3.8.3", "eslint": "^7.25.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.4.0", "husky": "^6.0.0", "jest": "^27.2.0", "lint-staged": "^10.5.4", "next": "^12.1.6", "prettier": "^2.2.1", "react": "^17.0.2", "react-dom": "^17.0.2", "semantic-release": "^19.0.2", "ts-jest": "^27.0.5", "ts-node": "^10.2.1", "typescript": "^4.2.4" }, "config": { "commitizen": { "path": "./node_modules/@ryansonshine/cz-conventional-changelog" } }, "lint-staged": { "*.ts": "eslint --cache --cache-location .eslintcache --fix" }, "release": { "branches": [ "main" ] }, "peerDependencies": { "next": "^12.1.6", "react": "^17.0.2", "react-dom": "^17.0.2" } }