-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
111 lines (111 loc) · 3.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "lynx-scanner",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"typedoc": "typedoc",
"prepare": "husky",
"eslint": "eslint --fix .",
"prettier": "prettier --write .",
"stylelint:actions": "stylelint --fix \"src/**/*.{css,scss}\"",
"convert-md-to-pdf": "yarn run md-to-pdf ./docs/*.md ./docs/**/*.md",
"rtk:gen": "rimraf ./src/store/api/gen && mkdir ./src/store/api/gen && rtk-query-codegen-openapi openapi-config.ts && prettier -w ./src/store/api/gen",
"postinstall": "yarn run rtk:gen"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.6",
"@sentry/react": "^7.114.0",
"@sentry/tracing": "^7.114.0",
"@yudiel/react-qr-scanner": "^2.0.4",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"compromise": "^14.14.0",
"formik": "^2.4.6",
"i18next": "^23.11.4",
"i18next-chained-backend": "^4.6.2",
"i18next-http-backend": "^2.5.2",
"i18next-localstorage-backend": "^4.2.0",
"md-to-pdf": "^5.2.4",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-daisyui": "^5.0.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-html5-camera-photo": "^1.5.11",
"react-i18next": "^14.1.1",
"react-qr-code": "^2.0.15",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.0",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-toolkit": "^1.1.2",
"tailwindcss": "^3.4.3",
"tesseract.js": "^5.1.1",
"theme-change": "^2.5.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/format": "^19.3.0",
"@electron-toolkit/preload": "^3.0.1",
"@eslint/eslintrc": "^3.0.2",
"@rtk-query/codegen-openapi": "^1.2.0",
"@types/i18next-browser-languagedetector": "^3.0.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-html5-camera-photo": "^1.5.3",
"@types/redux-logger": "^3.0.13",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react": "^4.2.1",
"daisyui": "^4.10.5",
"electron-log": "^5.1.7",
"esbuild-runner": "^2.2.2",
"eslint": "8",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"sass": "^1.75.0",
"stylelint": "^16.4.0",
"stylelint-actions-formatters": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-tailwindcss": "^0.0.7",
"stylelint-plugin-defensive-css": "^1.0.3",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-mdn-links": "^3.1.22",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mkcert": "^1.17.5",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"!(*.{css,scss,js,jsx,ts,tsx})": [
"prettier --write"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}