-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.68 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.68 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
{
"name": "project-react-base",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest --coverage",
"test:ui": "vitest --ui",
"cypress": "cypress open --e2e",
"test:behavior": "pnpm run dev & wait-on http://localhost:5173 & pnpm run cypress",
"ci:test:behavior": "pnpm run dev -- --no-open & wait-on http://localhost:5173 & cypress run --e2e --browser chrome --headless"
},
"dependencies": {
"@tanstack/react-query": "^4.36.1",
"graphql-request": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.14.0",
"styled-components": "6.0.0-rc.6"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^18.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@rocketseat/eslint-config": "^1.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^0.32.2",
"@vitest/ui": "^0.32.2",
"cypress": "^12.15.0",
"eslint": "^8.38.0",
"eslint-plugin-cypress": "^2.13.3",
"happy-dom": "^9.20.3",
"jsdom": "^22.1.0",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.32.2"
}
}