-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.99 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
{
"name": "podverse-management-web",
"version": "5.1.28",
"description": "Administrative management interface for Podverse",
"private": true,
"main": "./src/index.js",
"repository": "https://github.com/podverse/podverse-management-web.git",
"homepage": "https://github.com/podverse/podverse-management-web#readme",
"author": "Mitch Downey <mitch@podverse.fm>",
"contributors": [
"Mitch Downey"
],
"scripts": {
"prebuild": "npm run validate-env && npm run i18n-compile",
"build": "next build",
"predev": "npm run validate-env && npm run i18n-compile",
"dev": "next dev -p 3999",
"dev:watch": "nodemon --watch $(realpath node_modules/podverse-helpers) --exec \"npm run dev\"",
"lint": "next lint",
"start": "next start",
"validate-env": "ts-node --project tsconfig.scripts.json scripts/validate-env.ts",
"i18n-llm-translations": "ts-node --project tsconfig.scripts.json scripts/i18n/i18n-llm-translations.ts",
"i18n-compile": "ts-node --project tsconfig.scripts.json scripts/i18n/i18n-compile.ts"
},
"license": "AGPLv3",
"keywords": [
"podverse",
"management",
"admin",
"administration"
],
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"axios": "^1.12.2",
"classnames": "^2.5.1",
"isomorphic-dompurify": "^2.28.0",
"next": "^15.5.7",
"next-intl": "^4.3.9",
"podverse-helpers": "^5.1.12",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-virtuoso": "^4.14.1",
"sass": "^1.92.1",
"sharp": "^0.34.5",
"transcriptator": "^1.1.4",
"uuid": "^13.0.0",
"video.js": "^8.23.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.5.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.2.2",
"@types/video.js": "^7.3.58",
"dotenv": "^17.2.2",
"nodemon": "^3.1.10",
"openai": "^5.20.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}