Files
WRNexusJS/examples/basic-app/package.json
2026-07-12 15:55:18 +05:30

32 lines
927 B
JSON

{
"name": "basic-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run ../../packages/cli/src/index.ts dev .",
"build": "bun run ../../packages/cli/src/index.ts build .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "bun run ../../packages/cli/src/index.ts test .",
"check": "bun run typecheck && bun run lint && bun run format:check"
},
"dependencies": {
"@wrnexus/core": "workspace:*",
"@wrnexus/validation": "workspace:*",
"@wrnexus/db": "workspace:*"
},
"devDependencies": {
"@wrnexus/test": "workspace:*",
"@eslint/js": "latest",
"@tailwindcss/cli": "^4.0.0",
"eslint": "latest",
"prettier": "^3.9.4",
"tailwindcss": "^4.0.0",
"typescript-eslint": "latest"
}
}