-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.12 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
{
"name": "frontend-react-ess",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"testing": "vite --mode testing",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"test": "vitest run --mode testing",
"test:coverage": "npm test -- --coverage",
"test:show-coverage": "open ./coverage/index.html",
"cy:open-e2e": "cypress open open --e2e --browser electron",
"cy:run-e2e": "cypress run --e2e",
"cy:e2e-interactive": "start-server-and-test testing http-get://localhost:3000 cy:open-e2e",
"cy:e2e-headless": "start-server-and-test testing http-get://localhost:3000 cy:run-e2e",
"cy:show-coverage": "open ./cypress-coverage/lcov-report/index.html",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"axios": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.1",
"react-router-dom": "^6.11.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^18.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@cucumber/cucumber": "^9.2.0",
"@cypress/code-coverage": "^3.10.7",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.31.1",
"cypress": "^12.15.0",
"esbuild": "^0.18.8",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"start-server-and-test": "^2.0.0",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-istanbul": "^4.1.0",
"vitest": "^0.31.1"
}
}