next-clz
Version:
Your CLI by Shoulders to create a backend started with [next-seed](https://github.com/Eureka-Shoulders/next-seed)
81 lines (80 loc) • 2.09 kB
JSON
{
"name": "next-clz",
"version": "0.0.5",
"description": "Your CLI by Shoulders to create a backend started with [next-seed](https://github.com/Eureka-Shoulders/next-seed)",
"types": "build/types/types.d.ts",
"bin": {
"next-clz": "bin/next-clz"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "copyfiles ./src/templates/* ./build/templates",
"build": "yarn clean-build && yarn compile && yarn copy-templates",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepublishOnly": "yarn build",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"prepare": "husky install"
},
"files": [
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"author": {
"name": "Gabriel Silva",
"email": "devzgabriel@gmail.com"
},
"keywords": [
"next",
"cli",
"typescript",
"shoulders"
],
"license": "MIT",
"dependencies": {
"@euk-labs/beltz": "^2.4.2",
"gluegun": "latest",
"pluralize": "^8.0.0",
"ramda": "^0.28.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^26.0.20",
"@types/node": "^12.7.11",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^7.0.4",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}