@cake-fxd/cake-cli-presets
Version:
蛋糕英语前端模版项目集合
60 lines (59 loc) • 1.53 kB
JSON
{
"name": "{{projectName}}",
"version": "{{projectVersion}}",
"description": "{{projectDescription}}",
"scripts": {
"lint": "eslint '*/**.{js,ts,tsx}' --quiet --fix",
"build": "tsc",
"watch": "tsc --watch",
"start": "node ./bin/upload.js",
"prepublishOnly": "npm run lint && npm run build",
"dev": "nodemon ./bin/upload.js",
"release": "npm version patch && npm run publish"
},
"bin": {
"{{projectName}}": "./bin/index.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint"
]
},
"author": "liusiying@baicizhan.com",
"license": "ISC",
"dependencies": {
"@types/figlet": "^1.2.0",
"@types/listr": "^0.14.2",
"@types/node": "^14.0.23",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^5.1.0",
"execa": "^4.0.3",
"figlet": "^1.5.0",
"inquirer": "^7.3.2",
"listr": "^0.14.3",
"nodemon": "^2.0.4",
"ora": "^4.0.4",
"qiniu": "^7.3.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}