-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.57 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
{
"browserslist": {
"production": "defaults",
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"big.js": "6.2.2",
"bootstrap": "5.3.3",
"immer": "10.1.1",
"localforage": "1.10.0",
"motion": "12.0.6",
"papaparse": "5.5.2",
"react": "19.0.0",
"react-bootstrap": "2.10.9",
"react-bootstrap-typeahead": "6.4.0",
"react-currency-input-field": "3.9.0",
"react-dom": "19.0.0",
"react-hotkeys-hook": "4.6.1",
"react-icons": "5.4.0",
"react-router": "7.1.5",
"recharts": "2.15.1",
"use-immer": "0.11.0",
"use-undo": "1.1.1"
},
"devDependencies": {
"@axe-core/playwright": "4.10.1",
"@biomejs/biome": "1.9.4",
"@faker-js/faker": "9.4.0",
"@playwright/test": "1.50.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/big.js": "6.2.2",
"@types/jest": "29.5.14",
"@types/node": "22.13.0",
"@types/papaparse": "5.3.15",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/react-table": "7.7.20",
"@vitejs/plugin-react-swc": "3.7.2",
"@vitest/coverage-v8": "3.0.4",
"@vitest/ui": "3.0.4",
"autoprefixer": "10.4.20",
"console-fail-test": "0.5.0",
"jsdom": "26.0.0",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-pwa": "0.21.1",
"vite-plugin-sri3": "1.0.6",
"vitest": "3.0.5",
"workbox-window": "7.3.0"
},
"name": "guitos",
"pnpm": {
"overrides": {
"react-currency-input-field>react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
"private": true,
"scripts": {
"build": "vite build",
"bundle": "pnpm dlx vite-bundle-visualizer",
"coverage": "vitest run --coverage --silent --exclude 'e2e'",
"coverage:ui": "vitest --ui --open --coverage --silent --exclude 'e2e'",
"lint": "biome check --fix",
"lint:packages": "pnpm dedupe",
"schema": "pnpm dlx generate-schema ./docs/guitos-sample.json",
"serve": "vite preview",
"start": "vite",
"test": "pnpm test:unit --run && pnpm test:e2e",
"test:unit": "vitest --typecheck --exclude 'e2e'",
"test:e2e": "playwright test --reporter=list --project chromium",
"test:e2e:mobile": "playwright test --reporter=list --project 'Mobile Chrome'",
"test:e2e:mobile:ui": "playwright test --ui --project 'Mobile Chrome'",
"test:e2e:ui": "playwright test --ui --project chromium"
},
"type": "module",
"version": "1.3.7"
}