-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "image-service",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/src/core/index.js",
"lint": "eslint src/**/*.ts",
"test": "jest",
"start:dev": "ts-node-dev -P tsconfig.json --inspect -- src/core/index.ts"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.1.0",
"@ffprobe-installer/ffprobe": "1.1.0",
"@mcmics/dist-exiftool": "12.24.0",
"boom": "7.3.0",
"fastify": "3.28.0",
"fastify-boom": "1.0.0",
"fastify-multipart": "5.3.1",
"fluent-ffmpeg": "2.1.2",
"sharp": "0.28.3",
"tmp": "0.2.1"
},
"devDependencies": {
"@leocode/eslint-config": "1.2.0",
"@types/boom": "7.3.1",
"@types/busboy": "0.2.4",
"@types/fluent-ffmpeg": "2.1.20",
"@types/get-image-colors": "4.0.1",
"@types/jest": "26.0.24",
"@types/node": "16.3.3",
"@types/sharp": "0.28.5",
"@types/tmp": "0.2.1",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"eslint": "7.31.0",
"eslint-plugin-import": "2.23.4",
"fastify-swagger": "5.1.1",
"get-image-colors": "4.0.0",
"jest": "27.0.6",
"jimp": "0.16.1",
"ts-jest": "27.0.4",
"ts-node": "10.1.0",
"ts-node-dev": "1.1.8",
"typescript": "4.3.5"
}
}