starkon
Version:
Create a Next.js project with Starkon
156 lines (155 loc) • 4.53 kB
JSON
{
"name": "starkon",
"version": "0.0.10",
"type": "module",
"description": "Create a Next.js project with Starkon",
"main": "dist/index.cjs",
"module": "./dist/index.js",
"sideEffects": false,
"license": "MIT",
"files": [
"index.js",
"src",
"public",
"next.config.mjs",
"tailwind.config.mjs",
"postcss.config.mjs",
"tsconfig.json",
"tsconfig.cjs.json",
".eslintrc.cjs",
".prettierrc.json"
],
"bin": {
"starkon": "./index.js"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Zafer Gök (zzafergok)",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"prettier": "prettier --write \"src/**/*.{js,ts,jsx,tsx}\"",
"prettier:check": "prettier --check \"src/**/*.{js,ts,jsx,tsx}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"analyze": "ANALYZE=true npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzafergok/starkon.git"
},
"homepage": "https://www.starkon.website",
"keywords": [
"ui",
"nextjs",
"radix-ui",
"components",
"typescript",
"boilerplate",
"tailwindcss",
"design-system",
"create-next-app",
"cli",
"starter-template"
],
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-query-devtools": "^5.84.1",
"@tanstack/react-table": "^8.21.3",
"axios": "^1.9.0",
"chalk": "^4.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"commander": "^14.0.0",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"framer-motion": "^12.12.2",
"fs-extra": "^11.2.0",
"i18next": "^25.2.0",
"i18next-browser-languagedetector": "^8.1.0",
"lucide-react": "^0.511.0",
"next": "^15.3.2",
"ora": "^8.1.1",
"postcss": "^8.5.3",
"prompts": "^2.4.2",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-dropzone": "^14.3.8",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.56.4",
"react-i18next": "^15.5.1",
"react-redux": "^9.2.0",
"redux-persist": "^6.0.0",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.20",
"zustand": "^5.0.7"
},
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@tailwindcss/postcss": "^4.1.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"autoprefixer": "^10.4.21",
"critters": "^0.0.23",
"eslint": "^8.57.1",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.3.4",
"tsup": "^8.5.0",
"typescript": "^5.7.3",
"webpack-bundle-analyzer": "^4.10.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"typescript": ">=5.0.0"
}
}