UNPKG

create-manu-app

Version:

Create a new Next.js project with Tailwind CSS and TypeScript pre-configured. Simplify your project setup process with this scaffolding tool and start building your web application with ease.

48 lines (47 loc) 1.79 kB
{ "name": "{{projectName}}", "version": "0.0.1", "private": true, "workspaces": { "packages": [ "packages/hardhat", "packages/nextjs" ] }, "scripts": { "dev": "powershell -File ./start-dev.ps1", "account": "yarn workspace @se-2/hardhat account", "chain": "yarn workspace @se-2/hardhat chain", "fork": "yarn workspace @se-2/hardhat fork", "deploy": "yarn workspace @se-2/hardhat deploy", "verify": "yarn workspace @se-2/hardhat verify", "hardhat-verify": "yarn workspace @se-2/hardhat hardhat-verify", "compile": "yarn workspace @se-2/hardhat compile", "generate": "yarn workspace @se-2/hardhat generate", "flatten": "yarn workspace @se-2/hardhat flatten", "hardhat:lint": "yarn workspace @se-2/hardhat lint", "hardhat:lint-staged": "yarn workspace @se-2/hardhat lint-staged", "hardhat:format": "yarn workspace @se-2/hardhat format", "hardhat:test": "yarn workspace @se-2/hardhat test", "test": "yarn hardhat:test", "format": "yarn next:format && yarn hardhat:format", "start": "yarn workspace @se-2/nextjs dev", "next:lint": "yarn workspace @se-2/nextjs lint", "next:format": "yarn workspace @se-2/nextjs format", "next:check-types": "yarn workspace @se-2/nextjs check-types", "next:build": "yarn workspace @se-2/nextjs build", "next:serve": "yarn workspace @se-2/nextjs serve", "postinstall": "husky install", "precommit": "lint-staged", "vercel": "yarn workspace @se-2/nextjs vercel", "vercel:yolo": "yarn workspace @se-2/nextjs vercel:yolo" }, "packageManager": "yarn@3.2.3", "devDependencies": { "husky": "^8.0.1", "lint-staged": "^13.0.3" }, "engines": { "node": ">=18.17.0" } }