-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.32 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@cabinetjs/server",
"version": "1.0.0-dev.11",
"description": "CabinetJS is a cli application for archiving web contents from various sources",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Sophia",
"email": "[email protected]",
"url": "https://github.com/async3619"
},
"license": "MIT",
"bin": {
"cabinet": "./bin/cabinet"
},
"files": [
"dist",
"yarn.lock",
"bin",
"package.json"
],
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "cross-env NODE_ENV=development nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "ts-patch install",
"migration": "ts-node ./tools/migration.ts"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^10.1.0",
"@apollo/server": "^4.7.4",
"@aws-sdk/client-s3": "^3.353.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@nestjs/apollo": "^12.0.1",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/graphql": "^12.0.1",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/typeorm": "^9.0.1",
"@types/pluralize": "^0.0.29",
"ajv": "^8.12.0",
"async": "^3.2.4",
"better-ajv-errors": "^1.2.0",
"change-case": "^4.1.2",
"commander": "^11.0.0",
"cron-parser": "^4.8.1",
"croner": "^6.0.4",
"cronstrue": "^2.27.0",
"dataloader": "^2.2.2",
"dayjs": "^1.11.8",
"file-type": "16.5.4",
"filesize": "^10.0.7",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.1.1",
"graphql": "^16.6.0",
"graphql-scalars": "^1.22.2",
"html-entities": "^2.3.6",
"jsdom": "^22.1.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"ms": "^2.1.3",
"pluralize": "^8.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"sanitize-filename": "^1.6.3",
"sharp": "^0.32.1",
"shortid": "^2.2.16",
"sqlite3": "^5.1.6",
"tmp": "^0.2.1",
"toad-scheduler": "^2.3.0",
"typeorm": "^0.3.16",
"typia": "^4.0.9"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.3",
"@types/async": "^3.2.20",
"@types/express": "^4.17.13",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/fs-extra": "^11.0.1",
"@types/jest": "29.5.1",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.195",
"@types/mime-types": "^2.1.1",
"@types/node": "18.16.12",
"@types/node-fetch": "^2.6.4",
"@types/shortid": "^0.0.29",
"@types/supertest": "^2.0.11",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"conventional-changelog-conventionalcommits": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^5.1.1",
"jest": "29.5.0",
"prettier": "^2.3.2",
"semantic-release": "^21.0.5",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.1.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "5.0.4"
}
}