-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.06 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": "timeline",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:client": "cd client && next dev",
"build:client": "cd client && next build",
"lint:client": "cd client && next lint",
"lint:client:fix": "cd client && next lint --fix",
"dev:server": "NODE_ENV=development bun --watch run server/src/index.ts",
"start:server": "NODE_ENV=production bun run server/src/index.ts",
"lint:server": "eslint server",
"lint:server:fix": "eslint server --fix",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/static": "^1.1.1",
"@fancyapps/ui": "^5.0.36",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"axios": "^1.7.7",
"elysia": "^1.1.18",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"jsonwebtoken": "^9.0.2",
"marked": "^14.1.2",
"md5": "^2.3.0",
"next": "^14.2.14",
"node-schedule": "^2.1.1",
"octokit": "^4.0.2",
"pg": "^8.13.0",
"react": "^18",
"react-dom": "^18",
"react-transition-group": "^4.4.5",
"reflect-metadata": "^0.2.2",
"swr": "^2.2.5",
"typeorm": "^0.3.20",
"uuid": "^10.0.0",
"video.js": "^8.18.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/bun": "^1.1.10",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/jsonwebtoken": "^9.0.7",
"@types/md5": "^2.3.5",
"@types/node": "^20",
"@types/node-schedule": "^2.1.7",
"@types/pg": "^8.11.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-transition-group": "^4.4.11",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.6",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "~5.5.4"
}
}