forked from DeviceFarmer/stf
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
104 lines (104 loc) · 3.47 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
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
{
"name": "vk-devicehub-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:mock": "vite --mode mock",
"build:dev": "tsc -b && vite build --mode development",
"postbuild": "rimraf dist/mockServiceWorker.js",
"preview": "vite preview",
"code:check": "prettier --check \"src/**/*.{ts,tsx,js,css,scss,html}\"",
"code:format": "prettier --write \"src/**/*.{ts,tsx,js,css,scss,html}\"",
"code:format:specific-file": "prettier --write",
"lint:check": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"stylelint:check": "stylelint \"**/*.{css,scss}\"",
"stylelint:fix": "stylelint \"**/*.{css,scss}\" --fix",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:report": "vitest --ui",
"test:unit:coverage": "vitest --ui --coverage.enabled=true",
"bundle-analyzer": "npx vite-bundle-visualizer --config ./vite.config.ts",
"generate-code": "plop",
"generate-api": "orval --config ./orval.config.ts",
"type-checking": "tsc --p ./tsconfig.app.json --noEmit"
},
"dependencies": {
"@lukemorales/query-key-factory": "^1.3.4",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-query": "^5.59.15",
"@tanstack/react-query-devtools": "^5.62.8",
"@tanstack/react-table": "^8.20.5",
"@tanstack/react-virtual": "^3.10.8",
"@vkontakte/icons": "^2.148.0",
"@vkontakte/vkui": "^7.1.0",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"i18next": "^23.16.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.2",
"mobx": "^6.13.5",
"mobx-persist-store": "^1.1.5",
"mobx-react-lite": "^4.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-i18next": "^15.0.3",
"react-router": "^7.0.2",
"react-slider": "^2.0.6",
"react-split": "^2.0.14",
"socket.io-client": "^4.8.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin": "^2.9.0",
"@tanstack/eslint-plugin-query": "^5.59.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/react-slider": "^1.3.6",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"eslint": "^9.11.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-i18next": "^6.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-no-else": "^0.2.2",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"msw": "^2.6.0",
"orval": "^7.3.0",
"plop": "^4.0.1",
"postcss": "^8.4.47",
"postcss-preset-env": "^10.0.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"stylelint": "^16.10.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.16.0",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.4.8",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"msw": {
"workerDirectory": [
"public"
]
}
}