-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
196 lines (196 loc) · 7.14 KB
/
Copy pathpackage.json
File metadata and controls
196 lines (196 loc) · 7.14 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "autodroid-api",
"author": "luizfelipelaviola <luiz@laviola.dev>",
"version": "0.8.5",
"main": "./src/index.ts",
"license": "MIT",
"engines": {
"node": "v22.17.1"
},
"scripts": {
"dev": "nodemon",
"dev:server": "node -r ts-node/register -r tsconfig-paths/register ./src/index.ts",
"dev:server:debug": "node --inspect -r ts-node/register -r tsconfig-paths/register ./src/index.ts",
"start:dev": "node src/index.js -e development",
"start:staging": "node src/index.js -e staging",
"start:prod": "node src/index.js -e production",
"run-ts": "node -r ts-node/register -r reflect-metadata -r dotenv/config -r tsconfig-paths/register",
"lint": "run-p -c lint:*",
"lint:eslint": "eslint '{src,test}/**/*.{ts,tsx}' --fix",
"lint:tsc": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:dev": "prisma migrate dev",
"prisma:prod": "prisma migrate deploy",
"test": "vitest run --config test/config/vitest.config.mts",
"test:watch": "vitest --config test/config/vitest.config.mts",
"test:debug": "node --inspect ./node_modules/.bin/vitest --config test/config/vitest.config.mts --no-file-parallelism",
"test:unit": "vitest run --config test/config/vitest.config.mts --project unit",
"test:unit:watch": "vitest --config test/config/vitest.config.mts --project unit",
"test:unit:debug": "node --inspect ./node_modules/.bin/vitest run --config test/config/vitest.config.mts --project unit --no-file-parallelism",
"test:integration": "vitest run --config test/config/vitest.config.mts --project integration",
"test:integration:watch": "vitest --config test/config/vitest.config.mts --project integration",
"test:integration:debug": "node --inspect ./node_modules/.bin/vitest run --config test/config/vitest.config.mts --project integration --no-file-parallelism",
"test:e2e": "vitest run --config test/config/vitest.config.mts --project e2e",
"test:e2e:watch": "vitest --config test/config/vitest.config.mts --project e2e",
"test:e2e:debug": "node --inspect ./node_modules/.bin/vitest run --config test/config/vitest.config.mts --project e2e --no-file-parallelism",
"i18n": "i18next-scanner --config src/shared/i18n/extraction.js --output src/shared/i18n/extraction 'src/**/*.{ts,tsx,js,jsx}'",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --delete-dir-on-start --copy-files --no-copy-ignored",
"changelog": "commit-and-tag-version --skip.bump --skip.commit --skip.tag -i ./docs/CHANGELOG.md",
"prepare": "husky"
},
"dependencies": {
"@apollo/server": "^4.11.3",
"@google-cloud/storage": "^7.15.2",
"@graphql-tools/utils": "^10.8.6",
"@node-saml/passport-saml": "^5.0.1",
"@prisma/client": "^6.5.0",
"@sentry/node": "^9.5.0",
"@sentry/profiling-node": "^9.5.0",
"@socket.io/redis-adapter": "^8.3.0",
"@xmldom/xmldom": "^0.9.8",
"bull": "^4.16.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"connect-redis": "^9.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "2.30.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.18.2",
"express-useragent": "^1.0.15",
"fast-xml-parser": "^5.2.5",
"firebase-admin": "^13.2.0",
"geoip-lite": "^1.4.10",
"graphql": "^16.10.0",
"graphql-query-complexity": "^1.0.0",
"graphql-scalars": "^1.24.1",
"handlebars": "^4.7.8",
"helmet": "^8.0.0",
"i18next": "^24.2.3",
"i18next-fs-backend": "^2.6.0",
"i18next-http-middleware": "^3.7.1",
"ioredis": "^5.6.0",
"is-language-code": "3.1.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"mongoose": "^8.12.1",
"ms": "^2.1.3",
"nanoid": "3.0.0",
"node-schedule": "^2.1.1",
"nodemailer": "^6.10.0",
"npm-run-all": "^4.1.5",
"passport": "^0.7.0",
"passport-saml-metadata": "^5.0.0",
"pg": "^8.14.0",
"prisma-dbml-generator": "^0.12.0",
"rate-limiter-flexible": "^5.0.5",
"redis": "^5.6.1",
"reflect-metadata": "^0.2.2",
"semver": "^7.7.1",
"socket.io": "^4.8.1",
"socket.io-adapter": "^2.5.5",
"systeminformation": "^5.25.11",
"ts-node-dev": "^2.0.0",
"tsyringe": "^4.8.0",
"type-graphql": "^2.0.0-rc.2",
"validator": "^13.12.0",
"winston": "^3.17.0",
"xpath": "^0.0.34",
"yargs": "^17.7.2",
"youch": "^3.3.4",
"zod": "^3.24.2"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.10",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@faker-js/faker": "^9.6.0",
"@swc/core": "^1.11.9",
"@testcontainers/mongodb": "^10.19.0",
"@testcontainers/postgresql": "^10.19.0",
"@testcontainers/redis": "^10.19.0",
"@types/cookie-parser": "^1.4.8",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.18.2",
"@types/express-useragent": "^1.0.5",
"@types/geoip-lite": "^1.4.4",
"@types/jsonwebtoken": "^9.0.9",
"@types/lokijs": "^1.5.14",
"@types/mime-types": "^2.1.4",
"@types/ms": "^0.7.34",
"@types/node": "^22.13.10",
"@types/node-schedule": "^2.1.8",
"@types/nodemailer": "^6.4.17",
"@types/semver": "^7.5.8",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.12.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitest/coverage-v8": "^3.0.8",
"@vitest/ui": "^3.0.8",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"commit-and-tag-version": "^12.5.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "3.8.7",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-helpers": "1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unicorn": "^56.0.1",
"fishery": "^2.2.3",
"graphql-tag": "^2.12.6",
"husky": "^9.1.7",
"i18next-scanner": "^4.6.0",
"lint-staged": "^15.5.0",
"lokijs": "^1.5.12",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"prisma": "^6.5.0",
"regenerator-runtime": "^0.14.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.8.2",
"unplugin-swc": "^1.5.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "^3.0.8"
},
"nodemonConfig": {
"watch": [
"src/**/*"
],
"ext": "ts,json",
"exec": "yarn dev:server:debug",
"signal": "SIGTERM"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}