-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 KB
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
{
"name": "wedding-invitation",
"version": "0.1.0",
"description": "A wedding invitation web page template",
"author": "Ju Ho Nam <jhnamnam@gmail.com> (https://juhonamnam.github.io/)",
"license": "MIT",
"private": true,
"homepage": "https://DH-github.github.io/wedding-invitation",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@types/node": "^24.0.15",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"dayjs": "^1.11.10",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sass": "^1.89.2",
"typescript": "^4.4.2",
"vite": "^7.0.4",
"vite-plugin-html": "^3.2.2",
"vite-plugin-svgr": "^4.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/eslint": "^8",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"gh-pages": "^6.3.0",
"prettier": "^3.2.5",
"typescript-eslint": "^8.35.1"
}
}