-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
123 lines (123 loc) · 3.82 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
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "organized",
"private": true,
"version": "3.0.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/sws2apps/organized-app.git"
},
"scripts": {
"dev": "vite",
"build": "vite build && workbox generateSW workbox.config.ts",
"preview": "serve -l 4050 -s dist",
"test": "npm run cypress:test",
"cypress:open": "cypress open",
"cypress:test": "cypress run --browser chrome",
"generate:css": "node converter/css/convert.js && prettier converter/css/tokens.json src/global/global.css src/global/global.ts --write",
"generate:icons": "node converter/svg/convert.js && prettier src/components/icons --write",
"locales:unused": "tsx unused-i18n-keys.ts",
"lint": "eslint src"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:cypress/recommended"
]
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.6",
"@mui/lab": "^6.0.0-beta.14",
"@mui/material": "^6.1.4",
"@mui/x-date-pickers": "^7.22.1",
"@mui/x-tree-view": "^7.22.1",
"@react-pdf/renderer": "^4.0.0",
"@smakss/random-string": "^2.0.2",
"@sws2apps/react-sw-helper": "^1.25.0",
"@tanstack/react-query": "^5.59.19",
"comlink": "^4.4.1",
"crypto-es": "^2.1.0",
"date-fns": "^2.30.0",
"dateformat": "^5.0.3",
"dexie": "^4.0.9",
"dexie-react-hooks": "^1.1.7",
"file-saver": "^2.0.5",
"file-select-dialog": "^1.5.4",
"firebase": "^11.0.1",
"i18next": "^23.16.4",
"interweave": "^13.1.0",
"jszip": "^3.10.1",
"jw-epub-parser": "^3.27.0",
"mui-one-time-password-input": "^2.0.3",
"node-html-parser": "^6.1.13",
"qrcode": "^1.5.4",
"react": "^18.3.0",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.0",
"react-lottie-player": "^2.1.0",
"react-pdf-html": "^2.1.2",
"react-photo-view": "^1.2.6",
"react-router-dom": "^6.27.0",
"react-sortablejs": "^6.1.4",
"recoil": "^0.7.7",
"recoil-outside": "^0.1.1",
"sortablejs": "^1.15.3",
"swiper": "^11.1.14",
"use-pwa2": "^0.2.0",
"validator": "^13.12.0",
"vite": "^5.4.10",
"vite-plugin-comlink": "^5.1.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@svgr/plugin-prettier": "^8.1.0",
"@svgx/vite-plugin-react": "^1.0.1",
"@types/file-saver": "^2.0.7",
"@types/mocha": "^10.0.9",
"@types/react": "^18.3.12",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.1",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.3",
"cypress": "^13.15.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react-refresh": "^0.14.2",
"rollup": "^4.24.4",
"serve": "^14.2.4",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-package-version": "^1.1.0",
"workbox-cli": "^7.3.0"
},
"engines": {
"node": ">=20 <21",
"npm": ">=10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,json,html}": "prettier --write"
}
}