forked from hanghae-plus/front_6th_chapter2-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "front-6th-chapter2-1",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start:basic": "vite serve --open ./index.basic.html",
"start:advanced": "vite serve --open ./index.advanced.html",
"test": "vitest",
"test:basic": "vitest basic.test.js",
"test:advanced": "vitest advanced.test.jsx",
"test:ui": "vitest --ui",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"deploy": "pnpm run build && cp dist/index.advanced.html dist/index.html && gh-pages -d dist"
},
"devDependencies": {
"@eslint/js": "9.32.0",
"@testing-library/jest-dom": "6.6.4",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"@vitejs/plugin-react": "4.7.0",
"@vitest/ui": "^3.2.4",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"gh-pages": "6.3.0",
"jsdom": "^26.1.0",
"prettier": "3.6.2",
"typescript": "5.8.3",
"vite": "^7.0.5",
"vitest": "^3.2.4"
},
"dependencies": {
"react": "19.1.1",
"react-dom": "19.1.1"
}
}