-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.47 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
{
"name": "library-of-babel",
"private": true,
"version": "1.0.3",
"type": "module",
"scripts": {
"dev": "VITE_APP_VERSION=$(jq -r '.version' package.json) vite",
"build": "npm run lint && tsc && VITE_ENVIRONMENT=$ENVIRONMENT VITE_APP_VERSION=$APP_VERSION VITE_DOMAIN=$DOMAIN VITE_SENTRY_INGEST=$SENTRY_INGEST VITE_PLAUSIBLE_API_URL=$PLAUSIBLE_API_URL VITE_PB_INSTANCES=$PB_INSTANCES 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",
"madge:circular": "npx madge --extensions ts,tsx --circular ./",
"madge:circular:image": "npx madge --extensions ts,tsx --circular --image circular-dependencies.svg ./"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"class-variance-authority": "^0.7.0",
"fast-png": "^6.2.0",
"i18next": "^23.7.19",
"lucide-react": "^0.315.0",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.1",
"react-router-dom": "^6.22.2",
"usehooks-ts": "^2.10.0"
},
"devDependencies": {
"@types/eslint": "^8.56.2",
"@types/ramda": "^0.29.10",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"clsx": "^2.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"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.5",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"vite": "^5.4.14",
"vite-plugin-pwa": "^0.19.7"
}
}