-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "fertiscan-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"lint": "next lint",
"buildtsc": "tsc",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"eslintIgnore": [
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx"
],
"dependencies": {
"@mui/icons-material": "^6.1.4",
"@mui/material": "^6.1.8",
"@mui/material-nextjs": "^6.1.4",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"i18next": "^24.0.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-chained-backend": "^4.6.2",
"i18next-http-backend": "^2.6.2",
"i18next-resources-to-backend": "^1.2.1",
"jest-environment-jsdom": "^29.7.0",
"js-cookie": "^3.0.5",
"next": "14.2.15",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.2",
"react-i18next": "^15.1.1",
"react-zoom-pan-pinch": "^3.6.1",
"swiper": "^11.1.15",
"ts-node": "^10.9.2",
"uuid": "^11.0.3",
"zustand": "^5.0.0"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"eslint": "^8",
"eslint-config-next": "15.0.4",
"jest": "^29.7.0",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.0.0",
"typescript": "^5.6.3",
"whatwg-fetch": "^3.6.20"
}
}