-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.38 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.38 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
{
"name": "dnd-5e-srd-api",
"version": "5.3.0",
"engines": {
"node": "22.x",
"npm": ">=10.8.0"
},
"type": "module",
"private": true,
"scripts": {
"build:ts": "tsc && tsc-alias",
"build": "npm-run-all --sequential clean bundle-swagger build:ts copy-assets",
"clean": "rimraf dist/*",
"copy-assets": "mkdir -p dist && cp -R src/css dist/src && cp -R src/public dist/src",
"start": "npm run build && node dist/src/start.js",
"dev": "nodemon npm run start",
"lint": "eslint . --config eslint.config.js",
"lint:fix": "eslint . --config eslint.config.js --fix",
"validate-swagger": "redocly lint src/swagger/swagger.yml",
"bundle-swagger": "npm run validate-swagger && redocly bundle --output dist/openapi.yml src/swagger/swagger.yml && redocly bundle --output dist/openapi.json src/swagger/swagger.yml",
"gen-postman": "npm run bundle-swagger && openapi2postmanv2 -s dist/openapi.yml -o dist/collection.postman.json -c openapi-to-postman.json",
"test": "npm run test:unit && npm run test:integration:local",
"test:unit": "vitest run",
"test:integration": "vitest run --config ./vitest.config.integration.ts",
"test:integration:local": "docker compose pull && docker compose build && docker compose run --use-aliases api npm run test:integration"
},
"dependencies": {
"@apollo/server": "^5.4.0",
"@as-integrations/express5": "^1.1.2",
"@aws-sdk/client-s3": "^3.994.0",
"@bugsnag/js": "^8.8.1",
"@bugsnag/plugin-express": "^8.8.0",
"@graphql-tools/schema": "^10.0.31",
"@redocly/cli": "^2.10.0",
"@typegoose/typegoose": "^13.2.1",
"body-parser": "^2.2.2",
"class-validator": "^0.14.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"debug": "^4.4.3",
"ejs": "^3.1.10",
"escape-string-regexp": "^5.0.0",
"express": "^5.1.0",
"express-rate-limit": "^8.2.2",
"graphql": "^16.11.0",
"graphql-depth-limit": "^1.1.0",
"mongoose": "~9.2.3",
"morgan": "^1.10.1",
"node-fetch": "^3.1.1",
"redis": "^5.10.0",
"reflect-metadata": "^0.2.2",
"serve-favicon": "^2.5.1",
"type-graphql": "^2.0.0-rc.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@faker-js/faker": "^10.3.0",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/graphql-depth-limit": "^1.1.3",
"@types/morgan": "^1.9.10",
"@types/node": "^25.5.0",
"@types/shelljs": "^0.10.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-ejs": "^0.0.2",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-prettier": "^5.5.5",
"fishery": "^2.3.1",
"fs-extra": "^11.3.1",
"globals": "^17.0.0",
"mongodb-memory-server": "^11.0.1",
"node-mocks-http": "^1.17.2",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"openapi-to-postmanv2": "^5.3.5",
"prettier": "^3.8.1",
"rimraf": "^6.0.1",
"shelljs": "^0.10.0",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.15",
"yaml": "^2.8.2"
}
}