-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
{
"name": "plandy-web",
"private": false,
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prettier": "prettier --write --config ./.prettierrc \"**/*.{js,mjs,ts,mts,jsx,tsx,json}\"",
"convention": "bun prettier && eslint --fix \"**/*.{js,mjs,ts,mts,jsx,tsx,html}\"",
"prepare": "husky",
"postinstall": "husky install",
"test": "vitest run"
},
"dependencies": {
"basic-styled": "^0.0.11",
"firebase": "^11.0.2",
"i18next": "^24.0.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.1.1",
"react-router-dom": "^7.0.0",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/ui": "^2.1.2",
"csstype": "^3.1.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.9.0",
"happy-dom": "^15.7.4",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "5.7.3",
"typescript-eslint": "^8.8.1",
"vite": "^6.0.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.1.2"
},
"lint-staged": {
"*.{js,mjs,ts,mts,jsx,tsx,json}": "prettier --write",
"*.{js,mjs,ts,mts,jsx,tsx,html}": "eslint --fix",
"*.{test,spec}.*": "vitest run"
}
}