-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.35 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
{
"name": "gymtrack",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@hello-pangea/dnd": "16.3.0",
"@mantine/core": "5.10.1",
"@mantine/dates": "5.10.1",
"@mantine/form": "5.10.1",
"@mantine/hooks": "5.10.1",
"@mantine/notifications": "5.10.1",
"@reduxjs/toolkit": "^2.2.3",
"@sentry/react": "^7.110.0",
"@sentry/tracing": "^7.110.0",
"animate.css": "4.1.1",
"dayjs": "^1.11.10",
"firebase": "^10.11.0",
"history": "^5.3.0",
"i18next": "^23.11.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.5.0",
"mixpanel-browser": "2.49.0",
"react": "^18.2.0",
"react-body-highlighter": "^2.0.5",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"react-loading-skeleton": "3.4.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.22.3"
},
"lint-staged": {
"public/locales/**/*.json": [
"eslint --fix --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js"
],
"*.ts, *.tsx": [
"npm run prettier:fix"
]
},
"scripts": {
"start": "vite",
"build": "vite build",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"lint-i18n": "eslint --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js public/locales/",
"lint-i18n:fix": "eslint --fix --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js public/locales/",
"lint-staged": "lint-staged",
"prettier": "prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"type-check": "npx tsc --project tsconfig.json --noEmit",
"test": "vitest --passWithNoTests",
"e2e-report": "playwright show-report",
"e2e-test:headless": "playwright test",
"e2e-test:headless-chrome": "playwright test --project chromium",
"e2e-test:ui": "playwright test --ui",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"prepare": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "^20.12.7",
"@types/react": "^18.2.77",
"@types/react-dom": "^18.2.25",
"@types/react-router-dom": "^5.3.3",
"@types/recharts": "^1.8.29",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-i18n-json": "^4.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^2.8.8",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
}
}