-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.33 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "videosphere",
"version": "0.2.3",
"private": true,
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"preinstall": "node -e \"if(!process.env.npm_execpath?.includes('pnpm')){console.error('\\n ✖ This project requires pnpm — npm is not supported.\\n\\n Run the following instead:\\n rm -rf node_modules\\n pnpm install\\n\\n If you don\\'t have pnpm: npm i -g pnpm\\n');process.exit(1)}\"",
"dev": "next dev --webpack -p 9624",
"build": "next build",
"start": "next start -p 9624",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"validate": "pnpm format && pnpm lint && pnpm type-check && pnpm test run && pnpm test:a11y",
"test": "vitest",
"test:a11y": "vitest run --reporter=verbose --config vitest.a11y.config.ts",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"docs:api": "typedoc --options typedoc.json",
"docs:dev": "pnpm docs:api && vitepress dev docs",
"docs:build": "pnpm docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1006.0",
"@aws-sdk/lib-storage": "^3.1006.0",
"@aws-sdk/s3-request-presigner": "^3.1006.0",
"@heroicons/react": "^2.2.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.4.2",
"@radix-ui/react-slot": "^1.2.4",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"jose": "^6.2.3",
"lucide-react": "^0.577.0",
"mongoose": "^9.6.3",
"next": "16.2.9",
"next-themes": "^0.4.6",
"node-smb2": "^1.3.5",
"otplib": "^13.4.1",
"qrcode.react": "^4.2.0",
"react": "19.2.3",
"react-day-picker": "^10.0.1",
"react-dom": "19.2.3",
"react-joyride": "^3.0.1",
"sonner": "^2.0.7",
"ssh2": "^1.17.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@anthropic-ai/claude-code": "^2.1.87",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^16",
"@testing-library/user-event": "^14",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ssh2": "^1.15.5",
"@vitejs/plugin-react": "^5",
"@vitest/coverage-v8": "^4",
"@vitest/ui": "^4",
"axe-core": "^4.11.2",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"eslint-plugin-jsx-a11y": "^6",
"husky": "^9",
"jsdom": "^28",
"lint-staged": "^16",
"prettier": "^3",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "^5",
"vite-plugin-svgr": "^5.2.0",
"vitepress": "^1.6.4",
"vitest": "^4",
"vitest-axe": "^0.1.0"
},
"pnpm": {
"overrides": {
"@types/node": "^24"
}
}
}