forked from AMPATH/qa-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "qa-assistant",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"lint": "eslint . --ext .ts,.tsx",
"preview": "vite preview"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/fetch-mock": "^7.3.5",
"@types/react-modal": "^3.13.1",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^21.1.0",
"msw": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-modal": "^3.16.1",
"react-paginate": "^8.2.0",
"react-router-dom": "6",
"react-toastify": "^9.1.1",
"sweetalert": "^2.1.2",
"vitest": "^0.28.5",
"vitest-fetch-mock": "^0.2.1",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@types/date-fns": "^2.6.0",
"@types/js-cookie": "^3.0.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"cross-fetch": "^3.1.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^8.7.0",
"husky": "^8.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"react-router": "6.8.2",
"react-spinners": "0.13.8",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.1.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,md,html,css}": "prettier --write"
}
}