-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.67 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
{
"name": "react-reqres",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"start": "serve -s build",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"cy:open": "npx cypress open",
"cy:open-e2e": "cypress open --e2e --browser edge",
"cy:open-unit": "cypress open --component --browser edge",
"cy:run-e2e": "cypress run --e2e",
"cy:e2e": "start-server-and-test dev http-get://localhost:5173 cy:open-e2e",
"build-docker": "docker build -t reqres-test .",
"run-docker": "docker run -p 5173:5173 reqres-test"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@material-tailwind/react": "^2.1.8",
"axios": "^1.6.7",
"formik": "^2.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.22.0",
"tw-elements-react": "^1.0.0-alpha2",
"yup": "^1.3.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.20",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"cypress": "^13.6.4",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.33",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.12",
"vite-plugin-istanbul": "^5.0.0"
}
}