-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
{
"name": "portfolio",
"author": "Alena Shilimova",
"private": true,
"version": "3.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"deploy": "npm run build && gh-pages -d dist",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"preview": "vite preview",
"lint:fix": "prettier . --write && eslint . --fix",
"test:types": "tsc --noEmit",
"prepare": "husky install",
"clean:cache": "rm -rf ./dist node_modules/.vite node_modules/.cache"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@tanstack/react-router": "^1.65.0",
"class-variance-authority": "^0.5.3",
"clsx": "^1.2.1",
"cmdk": "1.0.0",
"lucide-react": "^0.162.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-scroll": "^1.9.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@cypress/react18": "^2.0.1",
"@eslint/js": "^9.12.0",
"@tanstack/router-devtools": "^1.65.0",
"@tanstack/router-plugin": "^1.65.0",
"@types/node": "^22.7.8",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-scroll": "^1.8.10",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.0",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-simple-import-sort": "^12.1.1",
"gh-pages": "^6.2.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.5.3",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.8"
}
}