seedling/source/ui/package.json
Roman Jaroš 616205fe73
All checks were successful
forgejo/Procyon/seedling/pipeline/pr-master This commit looks good
forgejo/Procyon/seedling/pipeline/head This commit looks good
Replace UI module with Next.js
2023-12-29 15:09:30 +00:00

73 lines
No EOL
2.1 KiB
JSON

{
"name": "$(appName)-ui",
"version": "0.1.0",
"author": "Roman Jaroš",
"license": "ISC",
"scripts": {
"ci:build": "pnpm build:prod",
"ci:in-test:smoke": "pnpm in-test:smoke -p ci",
"dev": "next dev",
"start": "next start",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:css": "stylelint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:update": "jest -u",
"build:prod": "next build",
"codegen": "pnpm dlx @rtk-query/codegen-openapi openapi-config.ts"
},
"dependencies": {
"@procyon/api": "1.2.10",
"@procyon/auth": "1.2.10",
"@procyon/components": "1.2.10",
"@procyon/constants": "1.2.10",
"@procyon/forms": "1.2.10",
"@procyon/localization": "1.2.10",
"@procyon/styles": "1.2.10",
"@procyon/types": "1.2.10",
"@procyon/utils": "1.2.10",
"@reduxjs/toolkit": "2.0.1",
"clsx": "2.0.0",
"date-fns": "3.0.6",
"history": "5.3.0",
"next": "14.0.4",
"ramda": "0.29.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "9.0.4",
"typescript": "5.3.3",
"yup": "1.3.3"
},
"devDependencies": {
"@rtk-query/codegen-openapi": "1.2.0",
"@types/jest": "29.5.11",
"@types/ramda": "0.29.9",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@types/react-redux": "7.1.33",
"@types/yup": "0.29.14",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"autoprefixer": "10.4.16",
"css-loader": "^6.8.1",
"process": "0.11.10",
"dotenv": "16.3.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-config-next": "14.0.4",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-typescript": "0.14.0",
"eslint-plugin-typescript-sort-keys": "3.1.0",
"jest": "29.7.0",
"postcss": "8.4.32",
"postcss-loader": "7.3.3",
"prettier": "3.1.1",
"tailwindcss": "3.4.0",
"ts-node": "10.9.2",
"ts-jest": "29.1.1"
},
"peerDependencies": {}
}