-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
113 lines (113 loc) · 3.53 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
106
107
108
109
110
111
112
113
{
"name": "geekr.",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": "https://geekr.vercel.app/",
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"@nteract/mathjax": "^4.0.15",
"@sentry/react": "^7.85.0",
"@sentry/tracing": "^7.85.0",
"@types/history": "^4.7.2",
"@types/react-router-dom": "^5.2.0",
"@vercel/analytics": "^1.1.1",
"@vitejs/plugin-react": "latest",
"@vkontakte/icons": "^1.124.0",
"axios": "^1.6.2",
"dayjs": "^1.11.10",
"habra-auth": "^3.0.3",
"history": "^4.7.2",
"html-react-parser": "^1.2.4",
"i18next": "^20.3.4",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.2.6",
"is-mobile": "^4.0.0",
"notistack": "^3.0.1",
"number-to-words-ru": "^2.4.0",
"react": "latest",
"react-colorful": "^5.1.2",
"react-detect-offline": "^2.4.3",
"react-dom": "latest",
"react-i18next": "^11.11.3",
"react-iframe": "^1.8.0",
"react-infinite-scroller": "^1.2.4",
"react-lazy-load-image-component": "^1.5.1",
"react-lazy-progressive-image": "^1.5.5",
"react-meta-tags": "^1.0.1",
"react-photoswipe": "^1.3.0",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scroll-restoration": "^1.0.10",
"react-sticky-box": "^2.0.5",
"react-syntax-highlighter": "^15.4.3",
"react-visibility-sensor": "^5.1.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"rimraf": "^5.0.5",
"tinycolor2": "^1.6.0",
"typescript": "latest",
"vite": "latest",
"vite-tsconfig-paths": "^4.0.5",
"workbox-build": "^6.1.1"
},
"scripts": {
"dev": "vite --host",
"build": "yarn clean && vite build",
"preview": "vite preview",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"lint": "yarn lint:types && yarn lint:eslint && yarn lint:prettier",
"lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix",
"lint:types": "yarn tsc --noemit",
"lint:eslint": "yarn eslint .",
"lint:eslint:fix": "yarn eslint . --fix",
"lint:prettier": "yarn prettier . -c",
"lint:prettier:fix": "yarn prettier . -w"
},
"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"
]
},
"devDependencies": {
"@babel/plugin-transform-private-property-in-object": "^7.23.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/node": "^18.0.0",
"@types/react": "^18.2.42",
"@types/react-color": "^3.0.4",
"@types/react-detect-offline": "^2.4.5",
"@types/react-dom": "^18.2.17",
"@types/react-lazy-load-image-component": "^1.5.1",
"@types/react-photoswipe": "^1.3.0",
"@types/react-redux": "^7.1.16",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/redux-logger": "^3.0.12",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.3",
"prettier": "^3.0.3"
}
}