This repository was archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.09 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.09 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "traceo",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"dev": "nest start",
"prettier": "prettier ./src/**/*.{js,ts} --write",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"typeorm": "ts-node ./node_modules/typeorm/cli.js -d ormconfig.ts",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.ts",
"test": "jest"
},
"workspaces": [
"../public/packages/shared/traceo-types"
],
"dependencies": {
"@clickhouse/client": "^0.2.2",
"@nestjs/axios": "^0.0.7",
"@nestjs/common": "9.0.5",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "9.0.5",
"@nestjs/jwt": "^10.1.0",
"@nestjs/microservices": "9.0.5",
"@nestjs/passport": "^10.0.0",
"@nestjs/platform-express": "^9.4.3",
"@nestjs/platform-socket.io": "9.4.0",
"@nestjs/schedule": "^2.2.3",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/swagger": "^5.2.1",
"@nestjs/typeorm": "^10.0.0",
"@nestjs/websockets": "10.1.3",
"@traceo/types": "0.0.0",
"@types/compression": "^1.7.3",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.8",
"@types/gravatar": "^1.8.3",
"@types/jest": "^26.0.15",
"@types/multer": "^1.4.7",
"@types/node": "^20.1.1",
"axios": "^1.4.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"dayjs": "^1.11.8",
"dotenv": "^16.3.1",
"gravatar": "^1.8.2",
"js-yaml": "^4.1.0",
"jsonwebtoken": "9.0.0",
"kafkajs": "^2.2.4",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7",
"sharp": "^0.32.5",
"short-unique-id": "^4.4.4",
"swagger-ui-express": "^4.6.3",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@nestjs/cli": "10.1.18",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^9.4.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^26.6.3",
"lint-staged": "^13.2.2",
"prettier": "^3.0.3",
"pg": "^8.11.0",
"supertest": "^6.0.0",
"ts-jest": "^26.4.3",
"ts-loader": "^9.4.4",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.{js,ts}": [
"yarn run prettier",
"yarn run lint:fix"
]
}
}