-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "file-service",
"version": "0.1.2",
"description": "A file serving microservice for the Alkemio platform",
"main": "main.ts",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug=0.0.0.0:9227 --watch",
"start:prod": "node dist/main",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alkem-io/file-service.git"
},
"keywords": [
"files",
"Alkemio"
],
"author": "Alkemio Foundation",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/alkem-io/file-service/issues"
},
"homepage": "https://github.com/alkem-io/file-service#readme",
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/etag": "^5.2.0",
"@fastify/helmet": "^11.1.1",
"@nestjs/common": "^10.3.8",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.8",
"@nestjs/microservices": "^10.3.8",
"@nestjs/platform-fastify": "^10.3.8",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"nest-winston": "^1.10.0",
"rxjs": "^7.8.1",
"yaml": "^2.4.2"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.8",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=20.9.0",
"npm": ">=10"
},
"volta": {
"node": "20.13.1",
"npm": "10.5.2"
}
}