Files
gov-portals-monorepo/DBIS/package.json
2026-02-13 10:30:56 -08:00

33 lines
779 B
JSON

{
"name": "portal-dbis",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start --port 3000",
"lint": "eslint . --max-warnings 0 --config ../.eslintrc.cjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@public-web-portals/shared": "workspace:*",
"next": "^14.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=20.0.0"
}
}