-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.92 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.92 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
{
"name": "typescript-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:vite": "vite",
"start:dev:vite": "concurrently \"npm run start:vite\" \"npm run start:dev:server\"",
"start:dev:server": "node ./json-server/index.js",
"lint:ts": "eslint \"**/*.{ts,tsx}\" ",
"lint:ts:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"lint:scss": "npx stylelint \"**/*.scss\"",
"lint:scss:fix": "npx stylelint \"**/*.scss\" --fix",
"test:unit": "jest --config ./config/jest/jest.config.ts",
"test:e2e": "cypress open",
"generate:slice": "node ./scripts/createSlice/index.js"
},
"lint-staged": {
"**/*.{ts,tsx}": "eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.5.13",
"@types/node": "^20.14.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"css-loader": "^6.6.0",
"cypress": "^13.15.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-feature-sliced-import-checker": "^0.0.5",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-unused-imports": "^4.1.3",
"globals": "^15.8.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"json-server": "^0.17.4",
"lint-staged": "^15.2.10",
"regenerator-runtime": "^0.14.1",
"sass": "^1.77.6",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^13.1.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.4.3",
"vite-plugin-svgr": "^4.2.0",
"whatwg-fetch": "^3.6.20"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@react-spring/web": "^9.7.4",
"@reduxjs/toolkit": "^2.2.6",
"@use-gesture/react": "^10.3.1",
"axios": "^1.7.7",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"react": "^18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1"
},
"overrides": {
"eslint": "^9.6.0"
}
}