-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nestjs-form-data",
"version": "11.0.1",
"description": "NestJS middleware for handling multipart/form-data, which is primarily used for uploading files",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"build:watch": "rimraf dist && tsc --watch",
"prepublish": "npm run test:e2e && npm run build",
"test:e2e": "jest --config test/jest-e2e.json"
},
"author": "dmitriy-nz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dmitriy-nz/nestjs-form-data.git"
},
"devDependencies": {
"@fastify/multipart": "^9.0.3",
"@nestjs/common": "^11.0.5",
"@nestjs/core": "^11.0.5",
"@nestjs/platform-express": "^11.0.5",
"@nestjs/platform-fastify": "^11.0.5",
"@nestjs/testing": "^11.0.5",
"@types/busboy": "^1.5.0",
"@types/jest": "^29.5.8",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.41",
"@types/supertest": "^2.0.11",
"@types/type-is": "^1.6.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"fastify": "^5.2.1",
"jest": "^29.7.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"supertest": "6.1.3",
"ts-jest": "^29.1.1",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"class-transformer": "^0.4.0 || ^0.5.1",
"class-validator": "^0.13.2 || ^0.14.0",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"rxjs": "^6.6.3 || ^7.2.0 || ^7.5.0"
},
"dependencies": {
"busboy": "^1.6.0",
"concat-stream": "^2.0.0",
"file-type": "^16.5.4",
"mkdirp": "^1.0.4",
"type-is": "^1.6.18",
"uid": "^2.0.0"
},
"keywords": [
"form data",
"nestjs multipart",
"nestjs form data",
"nestjs form data interceptor",
"nestjs file upload",
"nestjs validate file",
"nestjs store file",
"file middleware"
],
"engines": {
"node": " >=20"
}
}