-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.53 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.53 KB
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
{
"name": "bitsocial-web",
"version": "0.1.0",
"private": true,
"description": "Official Bitsocial web frontend: landing page, docs, apps explorer, and future flagship client",
"license": "AGPL-3.0-only",
"author": "Bitsocial Forge",
"type": "module",
"scripts": {
"dev": "portless bitsocial vite",
"build": "tsgo --noEmit --project tsconfig.json && vite build",
"lint": "oxlint --config oxlint.json --react-plugin",
"lint:fix": "oxlint --config oxlint.json --fix --react-plugin",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"typecheck": "tsgo --noEmit --project tsconfig.json",
"preview": "vite preview",
"doctor": "react-doctor . -y",
"doctor:score": "react-doctor . --score -y",
"doctor:verbose": "react-doctor . --verbose -y",
"commit": "cz"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.5.4",
"gsap": "^3.14.2",
"i18next": "^25.8.1",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"lucide-react": "^0.563.0",
"next-themes": "^0.4.6",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-i18next": "^16.5.4",
"react-router-dom": "^6.30.2",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.182.0"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"@typescript/native-preview": "^7.0.0-dev.20251226.1",
"@vitejs/plugin-react": "^6.0.0",
"autoprefixer": "^10.4.19",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"element-source": "0.0.5",
"husky": "4",
"lint-staged": "^16.2.7",
"oxfmt": "^0.20.0",
"oxlint": "^1.35.0",
"portless": "0.7.0",
"postcss": "^8.4.38",
"react-doctor": "0.0.28",
"react-grab": "0.1.28",
"react-scan": "0.5.3",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"vite": "8.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && cz --hook || true"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxlint --config oxlint.json --fix --react-plugin",
"oxfmt"
],
"*.{json,css}": "oxfmt"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}