-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "epmgcip-chaperone.admin",
"engines": {
"node": ">= 20"
},
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --ext .ts,.tsx,.js,.jsx,.json --fix",
"codegen": "graphql-codegen --config codegen.ts --require dotenv/config",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"@apollo/client": "^3.11.4",
"@apollo/experimental-nextjs-app-support": "^0.11.2",
"@contentful/rich-text-react-renderer": "^15.22.9",
"@mantine/core": "^7.13.4",
"@mantine/dates": "^7.13.4",
"@mantine/form": "^7.13.4",
"@mantine/hooks": "^7.13.4",
"@mantine/modals": "^7.13.4",
"@mantine/notifications": "^7.13.4",
"@next/third-parties": "^14.2.5",
"@tabler/icons-react": "^3.26.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"next": "^14.2.22",
"next-intl": "^3.26.2",
"nodemailer": "^6.9.16",
"react": "^18",
"react-dom": "^18",
"react-google-recaptcha": "^3.1.0",
"react-h5-audio-player": "^3.9.3",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1",
"yet-another-react-lightbox": "^3.21.3",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.3",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typed-document-node": "^5.0.9",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/nodemailer": "^6.4.16",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.9",
"netlify-cli": "^17.36.2",
"postcss": "^8.4.47",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}