-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.21 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.21 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "petfit",
"private": true,
"version": "1.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx}\" --write",
"format:check": "prettier \"src/**/*.{js,jsx,ts,tsx}\" --check",
"lint:css": "stylelint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:css:fix": "stylelint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"test": "vitest --environment jsdom",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed --project=chromium",
"test:e2e:debug": "PWDEBUG=1 playwright test",
"typecheck:app": "tsc -p tsconfig.app.json --noEmit",
"typecheck:stories": "tsc -p tsconfig.storybook.json --noEmit",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"test:stories": "storybook test --watch"
},
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"@tanstack/react-query": "^5.80.7",
"axios": "^1.10.0",
"lucide-react": "^0.525.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.6.3",
"react-swipeable-list": "^1.10.0",
"redux": "^5.0.1",
"remark-gfm": "^4.0.1",
"styled-components": "^6.1.19",
"vite-plugin-pwa": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@playwright/test": "^1.55.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@storybook/test-runner": "^0.23.0",
"@storybook/testing-library": "^0.2.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/ui": "^3.2.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jsdom": "^27.0.0",
"msw": "^2.11.2",
"postcss-styled-syntax": "^0.7.1",
"storybook": "^8.6.14",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.2.4",
"whatwg-fetch": "^3.6.20"
}
}