-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.4 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
100
101
102
103
104
105
106
107
108
109
{
"name": "vite-quick-start",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"serve": "npx serve -s ./dist",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --cache \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|css|scss|md|mdx|gql|graphql)\"",
"format": "npm run prettier -- --write",
"preview": "vite preview",
"cy:open": "TZ=US/Eastern cypress open",
"cy:run": "TZ=US/Eastern cypress run",
"cy:cov": "open ./tests/coverage/cypress/lcov-report/index.html",
"test": "TZ=US/Eastern jest --runInBand",
"test:cov": "open ./tests/coverage/jest/lcov-report/index.html",
"cov": "rm -rf .nyc_output && rm -rf ./tests/coverage/reports && npx cypress-jest-coverage-merge",
"report": "open ./tests/coverage/reports/lcov-report/index.html",
"prepare": "husky install"
},
"dependencies": {
"@tanstack/react-query": "^4.29.5",
"@tanstack/react-table": "^8.8.5",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.11.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@cypress/code-coverage": "^3.10.4",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"babel-plugin-transform-import-meta": "^2.2.0",
"cypress": "^12.11.0",
"cypress-jest-coverage-merge": "^1.0.2",
"cypress-real-events": "^1.7.6",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-unicorn": "^46.0.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"styled-components": "^5.3.10",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-istanbul": "^4.0.1",
"vite-tsconfig-paths": "^4.2.0"
},
"nyc": {
"all": true,
"extension": [
".js",
".jsx",
".ts",
".tsx"
],
"include": [
"src/**/*"
],
"exclude": [
"src/test-utils"
],
"excludeAfterRemap": true,
"report-dir": "tests/coverage/cypress",
"reporter": [
"lcov",
"json",
"text",
"json",
"html"
]
}
}