-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
{
"name": "portfolio-fastify-classic",
"version": "0.0.1",
"description": "",
"engines": {
"node": ">= 16.0.0",
"npm": ">= 8.0.0"
},
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "docker compose -f docker-compose.base.yml -f docker-compose.dev.yml up api",
"lint": "eslint . --ext .ts",
"test": "jest --no-cache --passWithNoTests",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' '__tests__/**/*.ts' --write",
"build": "tsc -p tsconfig.build.json",
"docker:e2e": "docker compose -f docker-compose.base.yml -f docker-compose.e2e.local.yml up api tests-runner"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.179",
"@types/node": "^16.0.0",
"@types/pg": "^8.6.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"got": "^11.8.2",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@opentelemetry/auto-instrumentations-node": "^0.31.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.30.0",
"@opentelemetry/resources": "^1.4.0",
"@opentelemetry/sdk-node": "^0.30.0",
"@opentelemetry/semantic-conventions": "^1.4.0",
"dotenv": "^16.0.0",
"fastify": "^3.27.4",
"fastify-cors": "^6.0.3",
"fastify-openapi-glue": "^2.6.6",
"fastify-static": "^4.5.0",
"fastify-swagger": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"pg": "^8.7.3",
"pino": "^7.8.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"typeorm": "^0.2.45",
"uuid": "^8.3.2"
}
}