-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.6 KB
/
package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint --no-fix --ext .ts,.tsx resources/js",
"test": "npm run test:unit",
"test:unit": "vitest",
"test:unit-util": "vitest --environment node --dir ./resources/js/utils/__tests__",
"test:unit:non-watch": "vitest run --environment jsdom",
"cypress": "cypress open",
"cypress:headless:components": "cypress run --component",
"cypress:headless:e2e": "cypress run --e2e",
"cypress:headless": "npm run cypress:headless:components && npm run cypress:headless:e2e",
"test:unit-component": "npm run vitest run && cypress run --component"
},
"devDependencies": {
"@storybook/addon-actions": "^8.2.7",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-links": "^8.2.7",
"@storybook/builder-vite": "^8.2.7",
"@storybook/cli": "^8.2.7",
"@storybook/react": "^8.2.7",
"@storybook/react-vite": "^8.2.7",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.19",
"cypress": "13.3.0",
"cypress-real-events": "^1.10.3",
"eslint": "^8.56.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.35",
"storybook": "^8.2.7",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vitest": "0.34.5"
},
"dependencies": {
"@inertiajs/inertia": "^0.11.1",
"@inertiajs/inertia-react": "^0.8.1",
"@inertiajs/react": "^1.0.10",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@vitejs/plugin-react": "^4.0.4",
"axios": "^1.7.3",
"clsx": "^2.1.0",
"framer-motion": "^10.15.1",
"laravel-vite-plugin": "^1.0.5",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^9.1.3",
"tailwind-merge": "^2.4.0",
"vite": "^5.3.5",
"ziggy-js": "^1.8.1"
}
}