-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.43 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
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
{
"name": "destiny-ghost-api",
"version": "2.4.0",
"description": "Node.js API for querying the Destiny database via SMS messages.",
"main": "start.js",
"type": "module",
"scripts": {
"coverage": "npm run test:watch -- --coverage --run",
"format": "remark . --quiet --frail --output",
"lint": "eslint --fix .",
"start:production": "NODE_ENV=production npm start",
"start:dev": "NODE_ENV=development npm start",
"start": "node --require=suppress-experimental-warnings --loader=./loader.js --no-experimental-fetch -r dotenv/config --max-old-space-size=8192 --unhandled-rejections=strict start",
"swagger": "swagger-jsdoc -d swaggerDef.cjs ./**/*.routes.js",
"test": "npm run test:watch -- --run",
"test:watch": "NODE_ENV=test node -r dotenv/config node_modules/vitest/vitest.mjs",
"prepare": "husky || true"
},
"author": "Chris Paskvan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chrispaskvan/destiny-ghost-api"
},
"engines": {
"node": ">=v18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"@azure/cosmos": "^4.2.0",
"@godaddy/terminus": "^4.12.1",
"@grpc/grpc-js": "^1.12.5",
"@grpc/proto-loader": "^0.7.10",
"@paralleldrive/cuid2": "^2.2.2",
"@snyk/protect": "^1.1295.2",
"agentkeepalive": "^4.6.0",
"applicationinsights": "^3.4.0",
"awesome-phonenumber": "^7.2.0",
"axios": "^1.7.9",
"base64url": "^3.0.1",
"better-sqlite3": "^11.8.1",
"body-parser": "^1.20.3",
"bullmq": "^5.37.0",
"compression": "^1.7.5",
"connect-redis": "^8.0.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"express-session": "^1.18.1",
"graphql": "^16.10.0",
"graphql-http": "^1.22.4",
"helmet": "^8.0.0",
"html-to-text": "^9.0.5",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.2",
"is-my-json-valid": "^2.20.6",
"joi": "^17.13.3",
"json-schema-defaults": "^0.4.0",
"lodash": "^4.17.21",
"nodemailer": "^6.10.0",
"nodemailer-smtp-transport": "^2.7.4",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"qs": "^6.14.0",
"rate-limiter-flexible": "^5.0.5",
"redis-errors": "^1.2.0",
"resolve": "^1.22.10",
"rfc6902": "^5.1.2",
"suppress-experimental-warnings": "^2.0.0",
"swagger-ui-express": "^5.0.0",
"twilio": "^5.4.2",
"yauzl": "^3.2.0"
},
"overrides": {
"nodemailer-smtp-transport": {
"underscore": "^1.13.6"
}
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@vitest/coverage-v8": "^3.0.4",
"chance": "^1.1.12",
"eslint": "^9.19.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"nock": "^14.0.0",
"node-mocks-http": "^1.16.2",
"pino-pretty": "^13.0.0",
"remark-cli": "^12.0.0",
"remark-lint-list-item-indent": "^4.0.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"stream-json": "^1.9.1",
"swagger-jsdoc": "^6.2.8",
"v8": "^0.1.0",
"vitest": "^3.0.4"
},
"snyk": true
}