forked from hanghae-plus/front_6th_chapter1-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
53
54
55
56
57
{
"name": "front-6th-chapter1-2",
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint:fix": "eslint --fix",
"prettier:write": "prettier --write ./src",
"preview": "vite preview",
"test": "vitest",
"test:basic": "vitest basic",
"test:advanced": "vitest advanced",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "npx playwright show-report",
"test:generate": "playwright codegen localhost:5173",
"prepare": "husky",
"gh-pages": "pnpm run build && gh-pages -d dist"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-transform-react-jsx": "latest",
"@eslint/js": "^9.16.0",
"@playwright/test": "latest",
"@testing-library/dom": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/user-event": "latest",
"@vitejs/plugin-react": "latest",
"@vitest/ui": "latest",
"@vitest/coverage-v8": "latest",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jsdom": "latest",
"lint-staged": "^15.2.11",
"msw": "^2.10.2",
"prettier": "^3.4.2",
"vite": "npm:rolldown-vite@latest",
"vitest": "latest",
"gh-pages": "^6.3.0"
}
}