-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.24 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
{
"name": "vite-rtk-query",
"license": "MIT",
"msw": {
"workerDirectory": [
"public"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,ts,jsx,tsx,cjs,mjs}": [
"eslint --fix --max-warnings 0 --no-warn-ignored --pass-on-no-patterns"
]
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "serve dist",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"prettier": "prettier --ignore-unknown --write .",
"clean": "rimraf node_modules pnpm-lock.yaml dist",
"validate": "./scripts/validate",
"prepare": "husky"
},
"dependencies": {
"@reduxjs/toolkit": "2.12.0",
"axios": "^1.20.0",
"clsx": "^2.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-redux": "^9.3.0",
"react-router": "^7.18.3",
"redux": "5.0.1"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.6",
"@types/eslint": "^9.6.1",
"@types/node": "^26.4.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"@vitejs/plugin-react": "^6.1.1",
"@vitejs/plugin-react-swc": "^4.3.3",
"all-contributors-cli": "^6.26.1",
"concurrently": "^10.0.5",
"eslint": "^9.39.2",
"eslint-config-ts-prefixer": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.4.1",
"msw": "^2.15.0",
"node-fetch": "^3.3.2",
"postcss": "^8.5.26",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"serve": "^14.2.6",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"volta": {
"node": "22.16.0"
}
}