generated from manoldonev/react-app-template-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.94 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
{
"name": "react-visualization-assignment-ts",
"homepage": "https://manoldonev.github.io/react-visualization-assignment-ts",
"version": "0.5.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"type": "module",
"dependencies": {
"@tanstack/query-core": "^5.24.1",
"@tanstack/react-query": "^5.24.1",
"@tanstack/react-query-devtools": "^5.24.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.7",
"immer": "^10.0.3",
"jotai": "^2.6.5",
"jotai-immer": "^0.3.0",
"jotai-tanstack-query": "^0.8.5",
"jsdom": "^24.0.0",
"msw": "^2.2.1",
"parser^6.21.0": "link:@typescript-eslint/parser^6.21.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hot-toast": "^2.4.1",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.2",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1",
"web-vitals": "^3.5.2",
"whatwg-fetch": "^3.6.20",
"wonka": "^6.3.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@types/testing-library__jest-dom": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.5",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"tsc-files": "^1.1.4"
},
"scripts": {
"start": "vite",
"build": "vite build",
"prepare": "husky install",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d build",
"test": "vitest",
"test:related": "vitest related ./src/**/*.{ts,tsx} --run --passWithNoTests",
"lint": "eslint src/**/*.{ts,tsx} --quiet",
"lint:fix": "eslint --fix --ext src/**/*.{ts,tsx}",
"prettier": "prettier --check src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": "public"
}
}