-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.13 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.13 KB
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
{
"name": "bitmap-editor",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">= 22"
},
"scripts": {
"start": "vite",
"build": "vite build && node --run build-sw",
"preview": "vite preview",
"build-sw": "esbuild ./src/service-worker.ts --bundle --minify --tsconfig=tsconfig.sw.json --outdir=./dist --banner:js=//ver.`date +%s`",
"test": "TZ=UTC vitest",
"bench": "TZ=UTC vitest bench",
"test-info": "DEBUG=vite-node:* node --run test -- --logHeapUsage",
"//! For debugging open URL - `chrome://inspect` ": "",
"test-debug": "node --run test -- --inspect-brk --no-file-parallelism",
"test-update": "node --run test -- -u",
"coverage": "vitest run --coverage --coverage.reporter='text-summary'",
"coverage-dev": "vitest run --coverage --coverage.reporter='html'",
"check-ts": "tsc --noEmit",
"eslint": "eslint . --report-unused-disable-directives --max-warnings 0",
"eslint-fix": "node --run eslint -- --fix",
"format": "prettier --check src",
"format-fix": "prettier --write src",
"knip": "knip --production",
"lint-all": "node --run check-ts && node --run eslint && node --run format && node --run knip",
"lint-all-fix": "node --run eslint-fix && node --run format-fix",
"find-i18n": "node ./scripts/find_i18n.js",
"find-bs-icons": "node ./scripts/find_bs_icons.js",
"prepare": "git config core.hooksPath .git-hooks",
"pre-commit": "node --run lint-all && node --run test && node --run bench"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.13.1",
"classnames": "^2.5.1",
"file-saver": "^2.0.5",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"luxon": "^3.5.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hotkeys-hook": "^4.5.0",
"react-i18next": "^15.0.1",
"react-router-dom": "^6.26.1",
"workbox-cacheable-response": "^7.1.0",
"workbox-core": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"workbox-window": "^7.1.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/bootstrap": "^5.2.10",
"@types/file-saver": "^2.0.7",
"@types/luxon": "^3.4.2",
"@types/node": "^22.5.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.4",
"esbuild": "^0.23.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"happy-dom": "^15.7.0",
"knip": "^5.27.5",
"msw": "^2.4.1",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.4"
}
}