-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.25 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
{
"name": "detrak",
"private": true,
"version": "1.1.16",
"type": "module",
"scripts": {
"dev": "VITE_APP_VERSION=$(jq -r '.version' package.json) vite",
"build": "npm run lint && tsc && VITE_APP_VERSION=$APP_VERSION VITE_DOMAIN=$DOMAIN VITE_PLAUSIBLE_API_URL=$PLAUSIBLE_API_URL VITE_SENTRY_DSN=$SENTRY_DSN VITE_SENTRY_ENVIRONMENT=$SENTRY_ENVIRONMENT vite build",
"lint": "eslint --max-warnings=0 .",
"postversion": "res/convert-annotated-tag-to-lightweight.sh",
"preview": "vite preview",
"eslint:print-active-rules": "eslint --print-config src/index.ts",
"prettier": "prettier -w .",
"generate-pwa-assets": "res/generate-pwa-assets.sh",
"check-prng": "bun -e 'import { checkPrngNumbersRepartition } from \"./src/lib/prng\"; checkPrngNumbersRepartition()'"
},
"dependencies": {
"@fontsource/caveat": "^5.0.3",
"@fontsource/inter": "^5.0.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-slot": "^1.1.2",
"@sentry/react": "^7.120.3",
"@sentry/vite-plugin": "^2.10.3",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"date-fns": "^3.6.0",
"i18next": "^23.2.6",
"lucide-react": "^0.257.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.1",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6"
},
"devDependencies": {
"@types/eslint": "^8.44.7",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"typescript": "^5.0.2",
"vite": "^4.5.9",
"vite-plugin-pwa": "^0.19.7"
}
}