-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (75 loc) · 1.86 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
{
"name": "alizehkhan",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky",
"lint": "eslint . --fix",
"format": "prettier . --fix",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@mdx-js/rollup": "^3.0.1",
"@tabler/icons-react": "^3.26.0",
"@vercel/analytics": "^1.3.2",
"date-fns": "^4.1.0",
"framer-motion": "^11.3.31",
"husky": "^9.1.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-markdown": "^9.0.1",
"react-modal": "^3.16.1",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.27.0",
"react-syntax-highlighter": "^15.5.0",
"rollup": "^4.18.0"
},
"devDependencies": {
"@shikijs/transformers": "^1.9.0",
"@types/mdx": "^2.0.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/react-modal": "^3.16.3",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-unused-imports": "^3.2.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"shiki": "^1.10.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"vite": "^5.4.10",
"vite-plugin-eslint": "^1.8.1"
},
"lint-staged": {
"*.tsx": [
"eslint --fix",
"prettier --write"
]
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"semi": false,
"useTabs": true,
"singleQuote": true
}
}