-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "alexeychikk.github.io",
"version": "1.0.0",
"description": "A website showcasing my skills and experience",
"homepage": "http://alexeychikk.github.io",
"type": "module",
"repository": {
"url": "https://github.com/alexeychikk/alexeychikk.github.io"
},
"author": {
"email": "[email protected]",
"name": "Alex Zinkevych",
"url": "http://alexeychikk.github.io"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "tsc",
"lint": "prettier --check . && eslint .",
"format": "eslint --fix . && prettier --write ."
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"clsx": "^1.1.1",
"date-fns": "^2.16.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-use": "^17.4.0",
"typescript": "^5.0.4",
"use-resize-observer": "^6.1.0"
},
"devDependencies": {
"@rollup/plugin-strip": "^3.0.4",
"@types/eslint": "^8.56.6",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-refresh": "^0.4.6",
"prettier": "^3.2.5",
"vite": "^5.2.6",
"vite-bundle-analyzer": "^0.9.2",
"vite-plugin-svgr": "^4.2.0",
"vite-plugin-total-bundle-size": "^1.0.7",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}