-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "react-portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "docker compose up",
"dev:container": "vite --host",
"build": "vite build",
"test": "vitest --project unit --run",
"test:unit": "vitest --project unit --run",
"test:storybook": "vitest --project storybook --run",
"check:types": "tsc --noEmit",
"check:code": "eslint .",
"storybook": "storybook dev -p 6006 --host",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@eslint/js": "^9.21.0",
"@storybook/addon-a11y": "^10.1.2",
"@storybook/addon-docs": "^10.1.2",
"@storybook/addon-onboarding": "^10.1.2",
"@storybook/addon-vitest": "^10.1.2",
"@storybook/react-vite": "^10.1.2",
"@types/node": "^26.1.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/browser-playwright": "^4.0.14",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^10.1.2",
"gh-pages": "^6.3.0",
"globals": "^15.15.0",
"happy-dom": "^20.10.6",
"jiti": "^2.7.0",
"jsdom": "^27.4.0",
"playwright": "^1.57.0",
"sass": "^1.89.2",
"storybook": "^10.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.1",
"vite": "^6.2.0",
"vitest": "^4.0.14"
}
}