Add API monorepo
Change-Id: I39aa1707744bb86c4bc9113157bbf815bb3fe33a
This commit is contained in:
parent
b87cff043a
commit
5246efb027
56 changed files with 251 additions and 22 deletions
95
source/ui/package.json
Normal file
95
source/ui/package.json
Normal file
|
@ -0,0 +1,95 @@
|
|||
{
|
||||
"name": "$(appName)-fe",
|
||||
"version": "0.1.0",
|
||||
"author": "Roman Jaroš",
|
||||
"license": "ISC",
|
||||
"scripts": {
|
||||
"ci:build": "pnpm build:prod",
|
||||
"ci:build:test": "pnpm build:test",
|
||||
"ci:test:e2e": "nightwatch --env ci",
|
||||
"dev": "webpack serve --config scripts/webpack-dev.js --env config=local",
|
||||
"lint": "eslint -c .eslintrc src/**/*.{ts,tsx}",
|
||||
"lint:css": "stylelint src/**/*.ts",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"test:update": "jest -u",
|
||||
"test:e2e-build": "tsc -p tests/tsconfig.json -w",
|
||||
"test:e2e": "nightwatch --env localhost",
|
||||
"build:prod": "webpack --config scripts/webpack-prod.js",
|
||||
"build:test": "webpack --config scripts/webpack-dev.js --env config=test",
|
||||
"serve": "http-server-spa build index.html 3331",
|
||||
"codegen": "pnpm dlx @rtk-query/codegen-openapi openapi-config.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@prokyon/api": "^1.0.31",
|
||||
"@prokyon/auth": "^1.0.31",
|
||||
"@prokyon/components": "^1.0.31",
|
||||
"@prokyon/constants": "^1.0.31",
|
||||
"@prokyon/forms": "^1.0.31",
|
||||
"@prokyon/localization": "^1.0.31",
|
||||
"@prokyon/styles": "^1.0.31",
|
||||
"@prokyon/types": "^1.0.31",
|
||||
"@prokyon/utils": "^1.0.31",
|
||||
"@reduxjs/toolkit": "1.8.3",
|
||||
"clsx": "^1.2.1",
|
||||
"date-fns": "2.29.2",
|
||||
"history": "5.3.0",
|
||||
"ramda": "0.28.0",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2",
|
||||
"react-redux": "8.0.2",
|
||||
"typescript": "5.0.4",
|
||||
"wouter": "2.11.0",
|
||||
"yup": "0.32.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rtk-query/codegen-openapi": "1.0.0",
|
||||
"@types/enzyme": "3.10.11",
|
||||
"@types/jest": "27.4.1",
|
||||
"@types/nightwatch": "2.3.24",
|
||||
"@types/ramda": "0.28.13",
|
||||
"@types/react": "17.0.43",
|
||||
"@types/react-dom": "17.0.14",
|
||||
"@types/react-redux": "7.1.24",
|
||||
"@types/yup": "0.29.13",
|
||||
"@typescript-eslint/eslint-plugin": "5.16.0",
|
||||
"@typescript-eslint/parser": "5.16.0",
|
||||
"autoprefixer": "10.4.4",
|
||||
"case-sensitive-paths-webpack-plugin": "2.4.0",
|
||||
"clean-webpack-plugin": "^4.0.0",
|
||||
"copy-webpack-plugin": "^10.2.4",
|
||||
"css-loader": "6.7.1",
|
||||
"process": "0.11.10",
|
||||
"dotenv": "16.3.1",
|
||||
"eslint": "8.11.0",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-plugin-import": "2.25.4",
|
||||
"eslint-plugin-react": "7.29.4",
|
||||
"eslint-plugin-react-hooks": "4.3.0",
|
||||
"eslint-plugin-simple-import-sort": "7.0.0",
|
||||
"eslint-plugin-typescript": "0.14.0",
|
||||
"eslint-plugin-typescript-sort-keys": "2.1.0",
|
||||
"file-loader": "6.2.0",
|
||||
"html-webpack-plugin": "5.5.0",
|
||||
"http-server-spa": "1.3.0",
|
||||
"jest": "27.5.1",
|
||||
"mini-css-extract-plugin": "2.6.0",
|
||||
"nightwatch": "3.0.1",
|
||||
"postcss": "8.4.21",
|
||||
"postcss-loader": "6.2.1",
|
||||
"prettier": "2.6.1",
|
||||
"tailwindcss": "3.0.23",
|
||||
"ts-node": "10.9.1",
|
||||
"ts-jest": "27.1.4",
|
||||
"ts-loader": "9.2.8",
|
||||
"ts-prune": "^0.10.3",
|
||||
"tsconfig-paths": "3.14.1",
|
||||
"url-loader": "4.1.1",
|
||||
"webpack": "5.70.0",
|
||||
"webpack-bundle-analyzer": "^4.5.0",
|
||||
"webpack-cli": "4.10.0",
|
||||
"webpack-dev-server": "4.7.4",
|
||||
"webpack-merge": "^5.8.0"
|
||||
},
|
||||
"peerDependencies": {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue