seedling/source/ui/package.json

95 lines
3.3 KiB
JSON
Raw Normal View History

{
"name": "$(appName)-ui",
"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": {
2023-11-28 15:32:30 +00:00
"@procyon/api": "1.2.9",
"@procyon/auth": "1.2.9",
"@procyon/components": "1.2.9",
"@procyon/constants": "1.2.9",
"@procyon/forms": "1.2.9",
"@procyon/localization": "1.2.9",
"@procyon/styles": "1.2.9",
"@procyon/types": "1.2.9",
"@procyon/utils": "1.2.9",
"@reduxjs/toolkit": "2.0.1",
"clsx": "2.0.0",
2023-12-22 09:32:58 +00:00
"date-fns": "3.0.6",
"history": "5.3.0",
2023-11-17 13:38:45 +00:00
"ramda": "0.29.1",
2023-11-17 20:32:06 +00:00
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "9.0.4",
2023-12-08 08:24:58 +00:00
"typescript": "5.3.3",
2023-11-17 20:31:02 +00:00
"wouter": "2.12.1",
2023-12-14 17:33:09 +00:00
"yup": "1.3.3"
},
"devDependencies": {
"@rtk-query/codegen-openapi": "1.2.0",
"@types/enzyme": "3.10.16",
"@types/jest": "29.5.11",
"@types/nightwatch": "2.3.30",
2023-11-17 13:38:45 +00:00
"@types/ramda": "0.29.9",
2023-12-16 09:36:24 +00:00
"@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",
"case-sensitive-paths-webpack-plugin": "2.4.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
2023-11-16 19:35:23 +00:00
"css-loader": "6.8.1",
"process": "0.11.10",
"dotenv": "16.3.1",
2023-12-16 09:36:25 +00:00
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"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",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.0",
"http-server-spa": "1.3.0",
2023-11-18 05:33:10 +00:00
"jest": "29.7.0",
"mini-css-extract-plugin": "2.7.6",
2023-12-14 13:33:23 +00:00
"nightwatch": "3.3.5",
2023-12-02 05:33:24 +00:00
"postcss": "8.4.32",
2023-11-18 05:33:01 +00:00
"postcss-loader": "7.3.3",
2023-12-10 09:33:25 +00:00
"prettier": "3.1.1",
"tailwindcss": "3.4.0",
2023-12-08 13:33:09 +00:00
"ts-node": "10.9.2",
2023-11-18 05:33:10 +00:00
"ts-jest": "29.1.1",
2023-11-17 15:33:25 +00:00
"ts-loader": "9.5.1",
"ts-prune": "0.10.3",
2023-11-17 20:31:49 +00:00
"tsconfig-paths": "4.2.0",
"url-loader": "4.1.1",
2023-11-17 20:30:48 +00:00
"webpack": "5.89.0",
"webpack-bundle-analyzer": "4.10.1",
2023-11-17 20:31:51 +00:00
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.10.0"
},
"peerDependencies": {}
}