-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "fastify-file-interceptor",
"version": "1.1.0-beta.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "This library for Nestjs using FastifyAdapter it rely on library fastify-multer and express multer",
"author": {
"name": "Rom",
"url": "https://github.com/chanphiromsok"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@nestjs/common": "^10.2.7",
"@types/multer": "^1.4.8",
"@types/node": "^15.0.1",
"@types/uuid": "^8.3.0",
"fastify": "^3.24.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"rxjs": "^7.0.0",
"sinon": "^11.1.1",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"keywords": [
"nestjs",
"fastify",
"interceptor",
"upload",
"fastify file interceptor",
"form",
"post",
"multipart",
"form-data",
"formdata",
"fastify",
"middleware"
],
"dependencies": {
"fastify-multer": "2.0.3",
"multer": "1.4.5-lts.1",
"tslib": "^2.2.0"
},
"peerDependencies": {
"fastify-multer": "2.0.2",
"multer": "1.4.2",
"tslib": "2.2.0"
},
"repository": {
"url": "https://github.com/chanphiromsok/fastify-file-interceptor"
}
}