-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.33 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@family-flix/api",
"version": "2.6.0",
"private": true,
"scripts": {
"dev": "tsx watch ./src/index.ts --port 3200",
"start": "node server.js",
"build": "node scripts/build.js",
"db": "prisma studio",
"check": "tsc --noEmit",
"schedule": "vite-node ./src/schedule/index.ts",
"test": "vitest run",
"pkg": "npm run build && pkg server.js --config=scripts/pkg.json --compress=GZip --out-path=bin",
"zip": "node scripts/zip"
},
"dependencies": {
"@hono/node-server": "^1.11.0",
"@panva/hkdf": "^1.0.4",
"@peculiar/webcrypto": "^1.4.3",
"@prisma/client": "4.13.0",
"@prisma/get-platform": "^5.14.0",
"axios": "^1.2.3",
"chalk": "^5.2.0",
"cheerio": "^1.0.0-rc.12",
"cron": "^2.2.0",
"crypto-es": "^2.1.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"execa": "^9.1.0",
"express": "^4.18.2",
"find-cache-dir": "^5.0.0",
"form-data": "^4.0.0",
"formidable": "^3.5.1",
"fs-extra": "^11.2.0",
"fuse.js": "^7.0.0",
"hasha": "5.2.2",
"hono": "^4.2.8",
"joi": "^17.9.1",
"jose": "^4.14.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"node-fetch": "^3.3.2",
"node-jsencrypt": "^1.0.0",
"p-filter": "^4.1.0",
"p-map": "^7.0.2",
"p-retry": "^6.2.0",
"progress": "^2.0.3",
"progress-stream": "^2.0.0",
"qiniu": "^7.8.0",
"rimraf": "^5.0.7",
"temp-dir": "2.0.0",
"tempy": "1.0.1",
"tencentcloud-sdk-nodejs-asr": "^4.0.642",
"uuid": "^9.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/cron": "^2.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.191",
"@types/node": "18.11.18",
"@types/progress": "^2.0.7",
"@types/progress-stream": "^2.0.5",
"@types/qs": "^6.9.7",
"@types/uuid": "^9.0.1",
"@types/xml2js": "^0.4.14",
"@vercel/ncc": "^0.36.1",
"archiver": "^5.3.1",
"esbuild": "^0.24.0",
"eslint": "8.32.0",
"eslint-config-next": "13.1.5",
"husky": "^8.0.3",
"pkg": "^5.8.1",
"prisma": "4.13.0",
"prisma-online": "^0.2.1",
"resolve": "^1.22.8",
"ts-morph": "^21.0.1",
"tsx": "^4.7.2",
"typescript": "4.9.4",
"vite-node": "^0.28.3",
"vitest": "^0.28.2"
}
}