-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.03 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.03 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
{
"name": "@wallet/backend",
"scripts": {
"start": "node -r tsconfig-paths/register dist/index.js",
"build:deps": "pnpm --filter @shared/backend build && pnpm --filter @wallet/shared build",
"build": "pnpm build:deps && tsc --build tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"dev": "nodemon --watch ./src --watch ../shared/src --ext ts,json --delay 1 --exec \"pnpm run build && node ./dist/index.js\"",
"test": "jest --passWithNoTests --maxWorkers=75%",
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@google-cloud/logging-winston": "^6.0.1",
"@interledger/tlv-kit": "^1.0.3",
"@sendgrid/mail": "^8.1.6",
"@shared/backend": "workspace:*",
"@wallet/shared": "workspace:*",
"awilix": "^12.0.5",
"axios": "^1.12.2",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"disposable-email-domains": "^1.0.62",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"graphql": "^16.11.0",
"graphql-request": "^7.4.0",
"hash-wasm": "^4.12.0",
"helmet": "^7.2.0",
"ioredis": "^5.8.0",
"iron-session": "^8.0.4",
"json-canonicalize": "^1.2.0",
"knex": "^3.1.0",
"moment": "^2.30.1",
"node-cache": "^5.1.2",
"objection": "^3.1.5",
"pg": "^8.16.3",
"randexp": "^0.5.3",
"rate-limiter-flexible": "^5.0.5",
"socket.io": "^4.8.1",
"stripe": "17.7.0",
"uuid": "^10.0.0",
"winston": "^3.18.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-operations": "^4.6.1",
"@types/cors": "^2.8.19",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.23",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.30",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"node-mocks-http": "^1.17.2",
"testcontainers": "^10.28.0",
"ts-jest": "^29.4.4",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
}
}