-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.71 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
90
91
92
93
94
95
96
97
98
99
{
"name": "otlplus",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^18"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"scss:ts-generate": "typed-scss-modules src",
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint ./src",
"prepare": "husky install"
},
"dependencies": {
"@tanstack/react-query": "^5.36.2",
"@tanstack/react-query-devtools": "^5.36.2",
"axios": "^0.21.2",
"classnames": "^2.2.6",
"framer-motion": "^10.15.0",
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"nock": "^13.5.4",
"prop-types": "^15.7.2",
"qs": "^6.9.4",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-ga": "^3.1.2",
"react-ga4": "^2.1.0",
"react-i18next": "^11.7.2",
"react-markdown": "^7.1.0",
"react-redux": "^7.2.1",
"react-router": "^6.15.0",
"react-router-dom": "^6.15.0",
"react-scrollbars-custom": "^4.0.21",
"react-slick": "^0.29.0",
"redux": "^4.0.0",
"slick-carousel": "^1.8.1",
"zabo-embed": "^0.0.7"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.4.5",
"@types/qs": "^6.9.12",
"@types/react-dom": "^18.2.22",
"@types/react-slick": "^0.23.10",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "3.0.0",
"react-error-overlay": "^6.0.9",
"sass": "^1.64.1",
"ts-jest": "^29.1.2",
"typed-scss-modules": "^7.1.2",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-environment": "^1.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}