-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.88 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.88 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
{
"name": "realworld-react-fsd",
"private": true,
"version": "1.2.1",
"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": "cross-env NODE_ENV=development webpack analyzer=true",
"test": "jest",
"eslint": "eslint src --fix --ext ts,tsx --cache --report-unused-disable-directives",
"prettier": "prettier --write . --ignore-path .gitignore",
"graph": "npx depcruise src --include-only \"^src\" --output-type dot | dot -T svg > dependency-graph-preview.svg",
"db:seed:dev": "dotenv -e .env.development -- sh -c 'curl -X POST \"$API_URL/test-utils/seed-db\" -H \"Authorization: Bearer $TEST_UTILS_TOKEN\"'",
"db:seed:prod": "dotenv -e .env.production -- sh -c 'curl -X POST \"$API_URL/test-utils/seed-db\" -H \"Authorization: Bearer $TEST_UTILS_TOKEN\"'",
"cy:open": "cross-env NODE_ENV=development CYPRESS_ENV=debug cypress open",
"cy:run": "cross-env NODE_ENV=development CYPRESS_ENV=debug cypress run",
"prepare": "husky"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.6.0",
"@reduxjs/toolkit": "^2.5.0",
"@tanstack/react-query": "^5.67.1",
"@tanstack/react-query-devtools": "^5.67.1",
"axios": "^1.8.1",
"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-redux": "^9.2.0",
"react-router-dom": "^6.23.1",
"redux-persist": "^6.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/preset-env": "7.26.7",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@cypress/grep": "^4.1.0",
"@jest/globals": "^29.7.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
"@svgr/webpack": "8.1.0",
"@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": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@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",
"cypress": "^14.4.1",
"dependency-cruiser": "^16.3.3",
"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",
"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"
}
}