-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1021 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1021 Bytes
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
{
"name": "site",
"version": "1.0.1",
"type": "module",
"private": true,
"homepage": "http://theolemague.github.io",
"dependencies": {
"framer-motion": "^12.4.10",
"gh-pages": "^3.2.2",
"octokit": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.1",
"react-icons": "^4.2.0",
"react-markdown": "^6.0.3",
"react-router-dom": "^6.23.0"
},
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "tsc && vite build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"prettier": {
"arrowParens": "always",
"printWidth": 180,
"semi": true,
"doubleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"jsxBracketSameLine": true
}
}