-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
87 lines (87 loc) · 2.68 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
{
"name": "summit",
"version": "0.1.0",
"private": true,
"scripts": {
"summit": "sh -c './check-if-theme-exists.sh' && npm run dev",
"dev": "next dev",
"build": "cross-env NODE_ENV=production next build",
"start": "next start",
"test": "jest",
"format": "prettier --write .",
"lint:indent": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"prepare": "husky"
},
"dependencies": {
"@next/bundle-analyzer": "^14.2.5",
"@next/font": "^14.2.9",
"@popperjs/core": "^2.11.8",
"@react-oauth/google": "^0.12.1",
"@reduxjs/toolkit": "^1.9.5",
"@types/aos": "^3.0.4",
"aos": "^2.3.4",
"axios": "^1.4.0",
"bootstrap": "^5.3.3",
"debounce": "^2.1.1",
"firebase": "^9.23.0",
"formik": "^2.4.5",
"next": "13.4.1",
"react": "18.2.0",
"react-bootstrap": "^2.7.4",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-icons": "^5.2.1",
"react-image-gallery": "^1.3.0",
"react-image-magnify": "^2.7.4",
"react-multi-carousel": "^2.8.5",
"react-paginate": "^8.2.0",
"react-redux": "^8.0.5",
"react-simple-star-rating": "^5.1.7",
"react-social-login-buttons": "^4.1.0",
"react-toastify": "^9.1.3",
"reactjs-social-login": "^2.6.3",
"redux-persist": "^6.0.0",
"yup": "^1.3.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/bootstrap": "^5.2.6",
"@types/jest": "^29.5.13",
"@types/node": "20.1.0",
"@types/react": "18.2.6",
"@types/react-bootstrap": "^0.32.32",
"@types/react-burger-menu": "^2.8.3",
"@types/react-dom": "18.2.4",
"@types/react-image-gallery": "^1.2.4",
"@types/react-image-magnify": "^2.7.4",
"@types/react-slick": "^0.23.13",
"@types/redux-mock-store": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"cross-env": "^7.0.3",
"cssnano": "^7.0.4",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.2",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^6.4.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.40",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.0.3",
"redux-mock-store": "^1.5.4",
"sass": "^1.77.8",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.0.4"
}
}