-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.64 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.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
{
"name": "news-feed",
"version": "1.0.0",
"private": false,
"keywords": [
"react",
"redux",
"news"
],
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest --watchAll=false",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --quiet --cache=true",
"lint-fix": "eslint src --quiet --fix --cache=true",
"test-ci": "bash scripts/test-ci.sh",
"proxy:install": "cd server && npm install",
"proxy:dev": "cd server && npm run dev",
"proxy:start": "cd server && npm start",
"proxy:test-cache": "cd server && npm run test-cache",
"docker:proxy": "docker-compose up proxy-server",
"docker:dev": "docker-compose --profile full-stack up",
"docker:build": "docker-compose build",
"dev:with-proxy": "concurrently \"npm run proxy:dev\" \"npm start\""
},
"license": "MIT",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"axios": "^1.13.4",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^7.2.2",
"lodash": "^4.17.23",
"nth-check": "^2.1.1",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^13.5.0",
"react-redux": "^8.1.3",
"react-refresh": "^0.18.0",
"react-router": "^6.30.3",
"react-router-dom": "^6.30.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"sass": "^1.97.3",
"vite": "^6.4.1"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.23",
"@types/node": "^24.10.9",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/redux-devtools-extension": "^2.13.2",
"@vitejs/plugin-react": "^5.1.3",
"ajv": "^8.17.1",
"concurrently": "^8.2.2",
"eslint-config-prettier": "^9.1.2",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^4.9.5"
},
"engines": {
"node": "^22.0.0",
"npm": ">=10.0.0"
}
}