-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3 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
110
111
112
113
114
115
116
117
118
119
{
"name": "pair-rotations-generator",
"version": "2.1.0",
"type": "module",
"private": true,
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.2.4",
"@semantic-release/git": "^10.0.1",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@types/jest-axe": "^3.5.3",
"@types/node": "^20.11.17",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"cypress": "^13.6.4",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "^29.7.0",
"jest-axe": "^5.0.1",
"jest-environment-jsdom": "^29.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-release": "^18.0.1",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.1.1",
"vite-tsconfig-paths": "^4.3.1",
"web-vitals": "^2.1.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "jest",
"preview": "vite preview",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"browserslist": {
"production": [
"Chrome >= 85",
"Edge >= 85",
"Safari >= 14.1",
"Firefox >= 86",
"iOS >= 14.5",
"Samsung >= 14.0"
],
"development": [
"last 1 chrome version",
"last 1 edge version",
"last 1 safari version",
"last 1 firefox version",
"last 1 ios version",
"last 1 samsung version"
]
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"transform": {
"^.+\\.(ts|tsx)?$": [
"ts-jest",
{
"tsconfig": {
"esModuleInterop": true
}
}
]
},
"testEnvironment": "jest-environment-jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/cypress/"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*",
"!<rootDir>/src/index.tsx",
"!<rootDir>/src/reportWebVitals.ts",
"!<rootDir>/src/vite-env.d.ts"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"yarn.lock"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}