-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
71 lines (71 loc) · 2.54 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
71
{
"name": "realworld-react-fsd",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --fix --ext ts,tsx --cache --report-unused-disable-directives --max-warnings 0",
"lint:perf": "set TIMING=1 && eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "pretty-quick --ignore-path .gitignore",
"prettier:all": "prettier --write . --ignore-path .gitignore",
"test:watch": "vitest watch",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"coverage:open": "npx vite preview --outDir ./coverage",
"test:coverage:open": "yarn run test:coverage && yarn run coverage:open",
"dep-cruiser:preview": "npx depcruise src --include-only \"^src\" --output-type dot | dot -T svg > dependency-graph-preview.svg"
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@tanstack/react-query": "^5.40.0",
"@tanstack/react-query-devtools": "^5.40.1",
"axios": "^1.7.2",
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.51.5",
"react-icons": "^5.2.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.23.1",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"dependency-cruiser": "^16.3.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-testing-library": "^6.2.2",
"jsdom": "^24.1.0",
"path": "^0.12.7",
"prettier": "^3.3.1",
"pretty-quick": "^4.0.0",
"typescript": "^5.4.5",
"unplugin-fonts": "^1.1.1",
"vite": "^5.2.13",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.6.0"
}
}