forked from 976977577/nest-file-fastify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "nest-file-fastify",
"version": "3.0.7",
"description": "@fastify/multipart decorators for Nest.js",
"license": "MIT",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"repository": {
"type": "git",
"url": "https://github.com/976977577/nest-file-fastify"
},
"keywords": [
"nest",
"nestjs",
"fastify",
"multipart",
"@fastify/multipart",
"upload",
"file",
"nest-file"
],
"scripts": {
"dev": "concurrently \"tsc --watch --p tsconfig.lib.json\" \"tsc --watch --p tsconfig.examples.json\"",
"watch": "nodemon ./build/examples/index.js",
"build:ci": "tsc --p tsconfig.lib.json && tsc --p tsconfig.examples.json",
"build": "tsc --p tsconfig.lib.json",
"lint": "eslint \"src/**\" --ext \".js,.jsx,.ts,.tsx\"",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf build",
"prepublishOnly": "yarn clean && npm run build"
},
"devDependencies": {
"@fastify/multipart": "^7.7.3",
"@nestjs/common": "^10.2.1",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.2.1",
"@nestjs/platform-fastify": "^10.2.1",
"@types/busboy": "^1.5.0",
"@types/node": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^4.21.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"typescript": "^5.1.6"
}
}