@reuvenorg/react-native-boilerplate-ultimate
Version:
A powerful CLI tool for creating React Native projects with modular architecture. Generate, manage, and scaffold React Native applications with pre-built modules and best practices.
82 lines • 2.31 kB
JSON
{
"name": "@reuvenorg/react-native-boilerplate-ultimate",
"version": "0.0.4",
"description": "A powerful CLI tool for creating React Native projects with modular architecture. Generate, manage, and scaffold React Native applications with pre-built modules and best practices.",
"author": "Reuven Naor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/reuvenaor/react-native-boilerplate-ultimate"
},
"bugs": {
"url": "https://github.com/reuvenaor/react-native-boilerplate-ultimate/issues"
},
"homepage": "https://github.com/reuvenaor/react-native-boilerplate-ultimate#readme",
"type": "module",
"main": "dist/index.js",
"bin": {
"@reuvenorg/react-native-boilerplate-ultimate": "./dist/index.js",
"rnte": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:src": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run typecheck && npm run build"
},
"files": [
"dist",
"templates",
"README.md"
],
"keywords": [
"react-native",
"template",
"cli",
"generator",
"typescript",
"modules",
"scaffolding",
"boilerplate",
"architecture",
"mobile-app",
"cross-platform",
"development-tools",
"project-generator",
"react-native-cli",
"modular-architecture"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"fs-extra": "^11.0.0",
"inquirer": "^9.0.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"canvas": "^3.1.2",
"eslint": "^9.31.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.37.0"
},
"engines": {
"node": ">=18"
}
}