-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.03 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
{
"name": "react-restaurant",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "run-p dev:msw start-api",
"start:real-api": "run-p dev start-api",
"dev": "vite",
"dev:msw": "cross-env VITE_ENABLE_DEVTOOLS=Y vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start-api": "json-server --watch db.json --port 3001 --delay 1000",
"test": "vitest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"cy": "start-test 5173 cy:open",
"cy:open": "cypress open"
},
"dependencies": {
"@tanstack/react-query": "^4.8.0",
"@tanstack/react-query-devtools": "^4.8.0",
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hot-toast": "^2.4.0",
"react-router-dom": "^6.4.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-vite": "^0.2.3",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@storybook/testing-react": "^1.3.0",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"cypress": "^10.9.0",
"jsdom": "^20.0.0",
"json-server": "^0.17.0",
"msw": "^0.47.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vitest": "^0.23.4"
},
"msw": {
"workerDirectory": "public"
}
}