felicity-lims/package.json
2023-11-10 08:16:33 +02:00

103 lines
4.8 KiB
JSON

{
"name": "felicity-lims",
"version": "0.1.0",
"main": "webapp/main.ts",
"license": "Public",
"scripts": {
"uv": "cd felicity && uvicorn main:felicity --host=0.0.0.0 --port=8000 --workers 1",
"uv:watch": "cd felicity && uvicorn main:felicity --reload --host=0.0.0.0 --port=8000 --workers 1 --log-level debug --use-colors",
"gu": "cd felicity && gunicorn main:felicity --workers 1 --worker-class uvicorn.workers.UvicornH11Worker --bind 0.0.0.0:8000 --name felicity --access-logfile - --error-logfile - --log-level info --timeout 600",
"gu:watch": "cd felicity && gunicorn main:felicity --workers 1 --worker-class uvicorn.workers.UvicornH11Worker --bind 0.0.0.0:8000 --name felicity --reload --access-logfile - --error-logfile - --log-level info --timeout 600",
"standalone:build": "rm -rf felicity/static/* && vite build && cp -r dist/** felicity/static",
"frontend:dev": "vite",
"frontend:vf": "vite --force",
"frontend:build:only": "vite build",
"frontend:prettier:check": "prettier --check \"{,webapp/**/}*.{md,json,yml,html,cjs,mjs,js,ts,tsx,css,scss}\"",
"frontend:prettier:format": "prettier --write \"{,webapp/**/}*.{md,json,yml,html,cjs,mjs,js,ts,tsx,css,scss}\"",
"frontend:lint": "eslint . --ext .js,.ts,.tsx,.vue",
"frontend:lint:fix": "npm run lint -- --fix",
"backend:test": "cd felicity && bash ./scripts/test.sh",
"backend:lint": "cd felicity && bash ./scripts/lint.sh",
"backend:format": "cd felicity && bash ./scripts/format.sh",
"backend:format:imports": "cd felicity && bash ./scripts/format_imports.sh",
"backend:schema:export": "cd felicity && strawberry export-schema api.gql.schema:schema > ./api/gql/schema.graphql",
"backend:codegen:not-working": "# npm run backend:schema:export && strawberry codegen --schema api.gql.schema --output-dir ../graphql -p python -p typescript ./api/gql/schema.graphql",
"database:al:upgrade": "cd felicity && alembic upgrade head",
"database:al:revision": "cd felicity && alembic revision --autogenerate -m",
"codegen": "graphql-codegen --config codegen.yml --verbose"
},
"dependencies": {
"@antv/g2": "^4.2.8",
"@antv/g2plot": "^2.4.23",
"@ckeditor/ckeditor5-build-decoupled-document": "^35.4.0",
"@editorjs/editorjs": "^2.26.4",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.2",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@graphql-codegen/typescript-vue-urql": "^2.3.6",
"@types/lodash-es": "^4.17.6",
"@urql/core": "^3.1.1",
"@urql/exchange-auth": "^1.0.0",
"@urql/vue": "^1.0.4",
"@vueform/multiselect": "^2.5.8",
"@vueuse/core": "^9.9.0",
"@vueuse/motion": "2.0.0-beta.12",
"axios": "^1.2.2",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"floating-vue": "2.0.0-beta.20",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.11.2",
"js-confetti": "^0.11.0",
"jstat": "^1.9.6",
"jwt-decode": "^3.1.2",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
"moment": "^2.29.4",
"notyf": "^3.10.0",
"pdf-lib": "^1.17.1",
"pinia": "^2.0.28",
"process": "^0.11.10",
"react": "^18.2.0",
"split.js": "^1.6.5",
"subscriptions-transport-ws": "^0.11.0",
"sweetalert2": "^11.6.16",
"tailwindcss": "^3.2.4",
"urql": "^3.0.3",
"vee-validate": "^4.7.3",
"vite-tsconfig-paths": "^4.0.3",
"vue": "^3.2.45",
"vue-multiselect": "3.0.0-alpha.2",
"vue-router": "^4.1.6",
"vue-sweetalert2": "^5.0.5",
"vuedraggable": "^4.1.0",
"wonka": "^6.1.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.11.18",
"@urql/devtools": "^2.0.3",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/compiler-sfc": "^3.2.45",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"jshint": "^2.13.6",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"typescript": "^4.9.4",
"vite": "^4.0.3"
}
}