81 lines
2.3 KiB
JSON
81 lines
2.3 KiB
JSON
{
|
|
"name": "react-crafter",
|
|
"version": "1.1.3",
|
|
"description": "A CLI tool to quickly scaffold a React application with TypeScript, Ant Design, Sass, Webpack, and essential development tools like Husky and linters pre-configured. Perfect for kickstarting modern React projects with best practices.",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"react-crafter": "bin/cli.js"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"typescript",
|
|
"antd",
|
|
"sass",
|
|
"webpack",
|
|
"cli",
|
|
"husky",
|
|
"linter",
|
|
"prettier",
|
|
"babel",
|
|
"javascript",
|
|
"frontend",
|
|
"starter-kit",
|
|
"scaffold",
|
|
"npx"
|
|
],
|
|
"author": "Carlos Gutierrez <cargdev@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CarGDev/reactwizard"
|
|
},
|
|
"scripts": {
|
|
"start": "node bin/cli.js",
|
|
"mockTest": "echo \"Error: no test specified\" && exit 0",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
|
|
"test:local": "npm link && npx react-crafter test-project",
|
|
"publish": "node release.js",
|
|
"lint:prettier": "node check-format.js",
|
|
"pretty-quick": "pretty-quick",
|
|
"prettier": "prettier --write . --config .prettierrc",
|
|
"prettier:commit": "node prettier-commit.js",
|
|
"prepare": "husky install"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.0",
|
|
"commander": "^7.2.0",
|
|
"execa": "^5.0.0",
|
|
"fs-extra": "^11.2.0",
|
|
"inquirer": "^6.0.0",
|
|
"ora": "^5.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.13.1",
|
|
"@babel/preset-env": "^7.13.5",
|
|
"@babel/preset-react": "^7.13.1",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@commitlint/cli": "^19.4.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@types/jest": "^29.5.14",
|
|
"babel-loader": "^8.2.2",
|
|
"css-loader": "^5.1.1",
|
|
"dotenv-webpack": "^7.0.2",
|
|
"eslint": "^9.9.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jsdoc": "^50.2.1",
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
"husky": "^8.0.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.3.3",
|
|
"pretty-quick": "^4.0.0",
|
|
"sass-loader": "^11.0.1",
|
|
"style-loader": "^2.0.0",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"webpack": "^5.24.3",
|
|
"webpack-cli": "^4.5.0"
|
|
}
|
|
}
|