create-tsreact
Version:
TS/React Scaffolder using esbuild compiler/bundler
53 lines (52 loc) • 1.54 kB
JSON
{
"name": "create-tsreact",
"version": "0.0.22",
"description": "TS/React Scaffolder using esbuild compiler/bundler",
"main": "index.js",
"type": "module",
"scripts": {
"format:check": "npx prettier src --check",
"format:fix": "npx prettier src --write",
"lint": "npx eslint src",
"esbuild-help": "esbuild -h",
"test": "echo \"Error: no test specified\" && exit 1",
"build-watch": "esbuild src/index.ts --bundle --outdir=bin --format=esm --target=es2022 --platform=node --watch",
"build": "esbuild src/index.ts --bundle --outdir=bin --format=esm --target=es2022 --platform=node",
"commit": "git add . ; git commit -a -m 'minor fix'; git push",
"prepare": "husky install"
},
"bin": {
"create-tsreact": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngmaibulat/create-tsreact.git"
},
"keywords": [
"Scaffolder",
"Typescript",
"React",
"Create Application",
"ESBuild",
"Generator"
],
"author": "Aibulat",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngmaibulat/create-tsreact/issues"
},
"homepage": "https://github.com/ngmaibulat/create-tsreact#readme",
"dependencies": {
"chalk": "^5.1.2"
},
"devDependencies": {
"@types/node": "^18.11.5",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"esbuild": "^0.15.12",
"eslint": "^8.27.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}