UNPKG

create-t3-app-fork

Version:

Create web application with the t3 stack

80 lines (79 loc) 2.09 kB
{ "name": "create-t3-app-fork", "version": "1.0.10", "description": "Create web application with the t3 stack", "author": "Shoubhit Dash <shoubhit2005@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/nexxeln/create-t3-app.git" }, "keywords": [ "create-t3-app", "init.tips", "next.js", "t3-stack", "tailwind", "tRPC", "typescript" ], "main": "./dist/index.js", "bin": { "create-t3-app": "./dist/index.js" }, "engines": { "node": ">=14.16" }, "scripts": { "build": "tsup src/index.ts --clean --sourcemap --minify --metafile", "dev": "tsup src/index.ts --watch --clean --onSuccess \"node dist/index.js\"", "start": "node dist/index.js", "lint": "eslint src/ --fix", "format": "prettier --write \"**/*.{ts,tsx,md,mdx,json}\"", "prepare": "husky install", "changeset": "changeset", "version-packages": "changeset version", "release": "dotenv release-it" }, "dependencies": { "chalk": "4.1.2", "chalk-animation": "^2.0.2", "commander": "^9.3.0", "figlet": "^1.5.2", "fs-extra": "^10.1.0", "inquirer": "^8.2.1", "ora": "4.0.0" }, "devDependencies": { "@changesets/cli": "^2.23.0", "@swc/core": "^1.2.206", "@types/chalk-animation": "^1.6.1", "@types/figlet": "^1.5.4", "@types/fs-extra": "^9.0.13", "@types/inquirer": "^8.2.1", "@types/node": "^18.0.0", "@typescript-eslint/eslint-plugin": "^5.30.0", "@typescript-eslint/parser": "^5.30.0", "dotenv-cli": "^5.1.0", "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-typescript": "^3.1.1", "eslint-plugin-import": "^2.26.0", "husky": "^8.0.1", "lint-staged": "^13.0.3", "prettier": "^2.7.1", "release-it": "^15.1.0", "tsup": "^6.1.2", "type-fest": "^2.14.0", "typescript": "^4.7.4" }, "lint-staged": { "src/**/*.{ts,tsx}": [ "prettier --write", "eslint --fix" ], "*.{json,md,mdx}": [ "prettier --write" ] } }