-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.64 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.64 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "realworld-react-fsd",
"author": "yurisldk <soldatenko.yuri@gmail.com>",
"repository": "https://github.com/yurisldk/realworld-react-fsd",
"version": "2.0.0",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"analyze:prod": "cross-env NODE_ENV=production webpack --env analyzer=true",
"test": "jest",
"eslint": "eslint src --fix --ext ts,tsx --cache --report-unused-disable-directives",
"prettier": "prettier --write . --ignore-path .gitignore",
"graph": "depcruise src --output-type dot | dot -T svg > dependency-graph-preview.svg",
"generate": "orval && yarn run zod:mini",
"zod:mini": "ts-node convert-zod-mini.ts",
"format:generated": "eslint --fix --ext ts,tsx src/shared/api/generated && prettier --write src/shared/api/generated",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "^5.90.20",
"classnames": "^2.5.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-error-boundary": "^4.0.13",
"react-icons": "^5.2.1",
"react-router": "^7.13.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/preset-env": "7.26.7",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@biomejs/biome": "2.3.15",
"@faker-js/faker": "^10.3.0",
"@jest/globals": "^29.7.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
"@svgr/webpack": "8.1.0",
"@tanstack/react-query-devtools": "^5.67.1",
"@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/node": "22.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/webpack-bundle-analyzer": "4.7.0",
"@types/webpack-dev-server": "4.7.2",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-loader": "9.2.1",
"copy-webpack-plugin": "12.0.2",
"cross-env": "^7.0.3",
"css-loader": "7.1.2",
"dependency-cruiser": "^17.3.8",
"dotenv": "^16.4.7",
"dotenv-cli": "^8.0.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"fork-ts-checker-webpack-plugin": "9.0.2",
"html-webpack-plugin": "5.6.3",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.0",
"lint-staged": "^16.1.0",
"mini-css-extract-plugin": "2.9.2",
"msw": "^2.12.10",
"openapi-typescript": "^7.10.1",
"orval": "^8.3.0",
"path": "^0.12.7",
"prettier": "^3.5.3",
"react-refresh": "0.16.0",
"react-refresh-typescript": "2.0.10",
"sass": "1.83.4",
"sass-loader": "16.0.4",
"style-loader": "4.0.0",
"ts-jest": "^29.2.6",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"typescript": "^5.4.5",
"webpack": "5.97.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"webpack-merge": "6.0.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,scss}": "prettier --write"
},
"msw": {
"workerDirectory": [
"public"
]
}
}