create-simple-projects
Version:
Create simple project with ts, jest, eslint, prettier and other stuff.
63 lines (62 loc) • 1.46 kB
JSON
{
"name": "create-simple-projects",
"version": "0.1.7",
"description": "Create simple project with ts, jest, eslint, prettier and other stuff.",
"main": "dist/index.js",
"bin": {
"csp": "./bin.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"url": "git@github.com:magicismight/create-simple-projects.git"
},
"keywords": [
"template",
"typescript",
"jest",
"quick-start"
],
"author": "Horcrux Chen",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-alloy": "^4.2.0",
"husky": "4.3.8",
"jest": "^27.0.6",
"lint-staged": "9.4.3",
"prettier": "^2.2.1"
},
"dependencies": {
"typescript": "^4.3.5",
"ts-node": "^10.2.0",
"@types/parse-gitignore": "^1.0.0",
"chalk": "^4.1.2",
"ejs": "^3.1.6",
"ignore": "^5.1.8",
"inquirer": "^8.1.2",
"parse-gitignore": "^1.0.1",
"shelljs": "^0.8.2",
"yargs": "^17.1.0",
"@types/shelljs": "^0.8.0",
"@types/yargs": "^17.0.2",
"@types/ejs": "^3.0.7",
"@types/inquirer": "^7.3.3",
"@types/node": "^16.4.13"
},
"lint-staged": {
"src/*.{ts}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}