-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
84 lines (84 loc) · 2.52 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
{
"name": "vite-rtk-query",
"version": "0.4.0",
"license": "MIT",
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "serve dist",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts,.tsx,.js,jsx.cjs",
"lint:fix": "eslint src --ext .ts,.tsx,.js,jsx,cjs --fix",
"typecheck": "tsc --noEmit",
"prettier": "prettier --ignore-unknown --write .",
"clean": "rimraf node_modules pnpm-lock.yaml dist",
"validate": "./scripts/validate",
"remove:tailwind": "node ./scripts/remove_tailwind",
"prepare": "husky"
},
"dependencies": {
"@reduxjs/toolkit": "2.3.0",
"clsx": "^2.1.1",
"history": "^5.3.0",
"ky": "^1.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"redux": "5.0.1",
"redux-first-history": "^5.2.0"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8.56.7",
"@types/node": "^22.9.1",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-react-swc": "^3.7.1",
"all-contributors-cli": "^6.26.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-ts-prefixer": "^1.14.0",
"eslint-config-typescript": "^3.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"msw": "^2.6.5",
"node-fetch": "^3.3.2",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"serve": "^14.2.4",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.1.5"
}
}