-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
{
"name": "learnhub.mk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-dev": "next build && next dev",
"lint": "next lint",
"prepare": "husky",
"lint-staged": "lint-staged",
"format": "prettier . --write",
"test": "jest",
"lint:e2e": "eslint tests",
"test:e2e": "playwright test --trace on"
},
"dependencies": {
"@tanstack/react-query": "^5.48.0",
"@vercel/speed-insights": "^1.0.11",
"axios": "^1.6.8",
"bootstrap-icons": "^1.11.3",
"embla-carousel": "^8.0.0",
"embla-carousel-react": "^8.0.0",
"formik": "^2.4.6",
"framer-motion": "^11.0.22",
"next": "14.2",
"npm": "^10.5.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.8.1",
"react-query": "^3.39.3",
"react-slick": "^0.30.2",
"react-toastify": "^10.0.5",
"react-turnstile": "^1.1.3",
"sharp": "^0.33.2",
"slick-carousel": "^1.8.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@playwright/test": "^1.45.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"@types/testing-library__jest-dom": "^6.0.0",
"@typescript-eslint/parser": "^7.14.1",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.5",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"winston": "^3.13.0"
}
}