Files

56 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2025-05-09 01:42:28 +09:00
{
"name": "api",
2026-03-09 11:41:24 +00:00
"version": "0.2.2",
2025-05-09 01:42:28 +09:00
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
2026-07-22 23:44:15 +09:00
"test": "vitest run",
2025-05-09 01:42:28 +09:00
"dev": "next dev --turbopack --port 3030",
"build": "next build",
"start": "next start",
"lint": "next lint --dir=src --ext=.ts --ext=.tsx",
"lint:fix": "pnpm lint --fix",
"format": "prettier --write .",
2025-05-09 15:01:33 +09:00
"typecheck": "tsc",
2025-05-09 01:42:28 +09:00
"env:check": "node -r dotenv/config ./src/config/env.server.mjs dotenv_config_path=./.env && :",
"clean": "rimraf .next .vercel/output node_modules .turbo"
},
"dependencies": {
"@status-im/wallet": "workspace:*",
2025-06-04 18:28:52 +09:00
"@trpc/client": "10.45.2",
"@trpc/next": "10.45.2",
2025-10-16 13:40:15 +02:00
"@trpc/server": "10.45.2",
"next": "15.5.16",
"react": "19.1.2",
"react-dom": "19.1.2",
"zod": "3.25.76"
2025-05-09 01:42:28 +09:00
},
"devDependencies": {
2025-10-16 13:40:15 +02:00
"@eslint/eslintrc": "^3.1.0",
"@next/eslint-plugin-next": "15.5.16",
2025-05-09 01:42:28 +09:00
"@types/node": "^20",
2025-11-26 17:01:48 +09:00
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
2025-05-09 01:42:28 +09:00
"eslint": "^9",
"eslint-config-next": "15.5.16",
2025-10-16 13:40:15 +02:00
"globals": "^15.12.0",
"typescript": "^5.6.2"
2025-05-09 01:42:28 +09:00
},
"engines": {
2025-11-26 17:01:48 +09:00
"node": "22.x"
2025-05-09 01:42:28 +09:00
},
"lint-staged": {
"{.env,src/config/env.server.mjs}": [
"pnpm env:check"
],
"*.{ts,tsx,js,jsx,mjs}": [
"eslint",
"prettier --write"
],
"*.{yml,yaml,json}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.12.3"
}