-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.9 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
{
"name": "reactive",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build && tsc && vite build",
"format": "prettier --write .",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"preview": "vite preview",
"messages:extract": "lingui extract",
"messages:compile": "lingui compile",
"test": "vitest",
"test:unit": "vitest",
"test:once": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@lingui/core": "^4.13.0",
"@lingui/macro": "^4.13.0",
"@lingui/react": "^4.13.0",
"react": "19.0.0-beta-26f2496093-20240514",
"react-dom": "19.0.0-beta-26f2496093-20240514",
"react-router-dom": "^6.27.0",
"vite-plugin-pwa": "^0.16.7",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/preset-react": "^7.25.9",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@fontsource/lato": "^5.1.0",
"@iconify-json/carbon": "^1.2.4",
"@lingui/cli": "^4.13.0",
"@lingui/conf": "^4.13.0",
"@lingui/vite-plugin": "^4.13.0",
"@mizdra/eslint-plugin-layout-shift": "^1.0.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/react": "^14.3.1",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.7",
"autoprefixer": "^10.4.20",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-react-compiler": "0.0.0-experimental-938cd9a-20240601",
"click-to-react-component": "^1.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-config-canonical": "^42.8.3",
"eslint-plugin-deprecate": "^0.8.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "0.0.0-experimental-51a85ea-20240601",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-sonarjs": "^0.23.0",
"globals": "^15.12.0",
"happy-dom": "^12.10.3",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"unimport": "^3.13.1",
"unplugin-icons": "^0.19.3",
"unplugin-remix-router": "^2.1.0",
"vite": "^5.4.10",
"vite-imagetools": "^6.2.9",
"vite-plugin-inspect": "^0.7.42",
"vite-plugin-json-server": "^0.1.1",
"vite-plugin-markdown": "^2.2.0",
"vite-plugin-qrcode": "^0.2.3",
"vite-plugin-top-level-await": "^1.4.4",
"vitest": "^0.34.6"
}
}