forked from hanghae-plus/front_7th_chapter3-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "frontend_7th_chapter3-2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:origin": "vite --open ./index.origin.html",
"dev:basic": "vite --open ./index.basic.html",
"dev:advanced": "vite --open ./index.advanced.html",
"test": "vitest",
"test:origin": "vitest src/origin",
"test:basic": "vitest src/basic",
"test:advanced": "vitest src/advanced",
"test:ui": "vitest --ui",
"build": "tsc -b && vite build",
"build:basic": "tsc -b && BUILD_TYPE=basic vite build",
"build:advanced": "tsc -b && BUILD_TYPE=advanced vite build",
"build:all": "pnpm build:basic && pnpm build:advanced",
"build:deploy": "pnpm build:all",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"jotai": "^2.15.2",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.0.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/ui": "^3.2.4",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "^26.1.0",
"typescript": "^5.9.2",
"vite": "^7.0.6",
"vitest": "^3.2.4"
}
}