-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.73 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
{
"name": "bet-keeper",
"version": "2.0.0",
"private": true,
"homepage": "https://radek2s.github.io/BetKeeper",
"dependencies": {
"@fluentui/font-icons-mdl2": "^8.5.5",
"@fluentui/react": "^8.101.0",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.6.5",
"clsx": "^2.1.0",
"firebase": "^9.13.0",
"nanoid": "^5.0.4",
"npm": "^9.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"tailwindcss": "^3.0.2",
"workbox-background-sync": "^5.1.4",
"workbox-broadcast-update": "^5.1.4",
"workbox-cacheable-response": "^5.1.4",
"workbox-core": "^5.1.4",
"workbox-expiration": "^5.1.4",
"workbox-google-analytics": "^5.1.4",
"workbox-navigation-preload": "^5.1.4",
"workbox-precaching": "^5.1.4",
"workbox-range-requests": "^5.1.4",
"workbox-routing": "^5.1.4",
"workbox-strategies": "^5.1.4",
"workbox-streams": "^5.1.4",
"workbox-webpack-plugin": "^6.4.1"
},
"scripts": {
"start": "vite dev",
"test": "vitest",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage --reporter junit --output-file ./test-report.xml",
"build": "tsc && vite build",
"build:ci": "CI=false && tsc && vite build",
"preview": "vite preview",
"format": "npx prettier --write .",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.1",
"autoprefixer": "^10.4.16",
"babel-eslint": "^10.1.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-resolve": "^29.7.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.33",
"prettier": "2.7.1",
"sass": "^1.69.7",
"sass-loader": "^12.3.0",
"tailwindcss": "^3.4.1",
"typescript": "5.1.6",
"vite": "^5.0.12",
"vite-plugin-eslint": "1.8.1",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{tsx,ts,css,scss,md}": "prettier --write"
}
}