Files
koc-loop/koc-portal/package.json

33 lines
810 B
JSON
Raw Permalink Normal View History

2026-07-30 12:06:41 +08:00
{
"name": "koc-task-portal",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "npx serve out -l 3001",
2026-07-30 12:06:41 +08:00
"test": "npm run build && node --test tests/rendered-html.test.mjs",
"lint": "eslint . --ignore-pattern dist --ignore-pattern .next --ignore-pattern out"
2026-07-30 12:06:41 +08:00
},
"dependencies": {
"fflate": "0.7.4",
"next": "^16.3.0",
2026-07-30 12:06:41 +08:00
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"eslint-config-next": "16.2.6",
"tailwindcss": "4.2.1",
"typescript": "5.9.3"
2026-07-30 12:06:41 +08:00
},
"type": "module"
}