-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.94 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
100
101
102
103
104
105
{
"name": "autoexpert-frontend",
"description": "Car aggregation service with reviews and charts based on NLP and parsing data from other car sites",
"private": false,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc & vite build",
"serve": "vite preview",
"lint": "eslint . --color",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"precommit": "lint-staged"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.15.20",
"@reduxjs/toolkit": "^2.2.5",
"@remix-run/router": "^1.17.0",
"axios": "^1.7.2",
"chart.js": "^4.4.3",
"clsx": "^2.1.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"lodash.debounce": "^4.0.8",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-chartjs-2": "^5.2.0",
"react-d3-cloud": "^1.0.6",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-error-boundary": "^4.0.13",
"react-lazily": "^0.9.2",
"react-loader-spinner": "^6.1.6",
"react-redux": "^9.1.2",
"react-router-dom": "^6.24.0",
"styled-components": "^6.1.11",
"styled-normalize": "^8.1.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/d3-scale": "^4.0.8",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@types/throttle-debounce": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"babel-plugin-react-compiler": "0.0.0-experimental-938cd9a-20240601",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-compiler": "0.0.0-experimental-51a85ea-20240601",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"pinst": "^3.0.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-minify": "^1.5.2"
},
"lint-staged": {
"*.{ts, tsx}": [
"pnpm lint"
],
"*.json": "prettier --write"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}