-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.97 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.97 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
{
"name": "@streamerhelper/web-server",
"version": "2.0.0",
"description": "StreamerHelper Web Server",
"scripts": {
"start": "NODE_ENV=production node ./bootstrap.js",
"dev": "cross-env NODE_ENV=local mwtsc --watch --run @midwayjs/mock/app.js",
"test": "cross-env NODE_ENV=unittest jest",
"cov": "jest --coverage",
"lint": "mwts check",
"lint:fix": "mwts fix",
"ci": "npm run cov",
"build": "mwtsc --cleanOutDir",
"migration:show": "ts-node ./node_modules/typeorm/cli.js migration:show -d src/scripts/typeorm-cli.datasource.ts",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run -d src/scripts/typeorm-cli.datasource.ts",
"migration:run:prod": "node dist/scripts/run-migrations.js",
"migration:revert": "ts-node ./node_modules/typeorm/cli.js migration:revert -d src/scripts/typeorm-cli.datasource.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.0.0",
"@midwayjs/bootstrap": "^3.12.0",
"@midwayjs/bull-board": "^3.12.0",
"@midwayjs/bullmq": "^3.12.0",
"@midwayjs/core": "^3.12.0",
"@midwayjs/koa": "^3.12.0",
"@midwayjs/logger": "^3.1.0",
"@midwayjs/typeorm": "^3.12.0",
"@midwayjs/validate": "^3.12.0",
"bullmq": "^5.0.0",
"chokidar": "^5.0.0",
"dayjs": "^1.11.19",
"fluent-ffmpeg": "^2.1.2",
"ioredis": "^5.0.0",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"nanoid": "^5.1.6",
"pg": "^8.11.0",
"typeorm": "^0.3.17",
"ws": "^8.19.0"
},
"devDependencies": {
"@midwayjs/mock": "^3.12.0",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/jest": "^29.2.0",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.23",
"@types/nanoid": "^3.0.0",
"@types/node": "18",
"cross-env": "^6.0.0",
"jest": "^29.2.2",
"mwts": "^1.3.0",
"mwtsc": "^1.4.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.2",
"typescript": "~4.8.0"
},
"engines": {
"node": ">=16.0.0"
}
}