-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.22 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.22 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
{
"name": "magiscribe-api",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"setup": "pnpm run setup:install && pnpm run setup:env",
"setup:install": "pnpm install",
"setup:env": "cp .env.example .env",
"build": "tsc -p tsconfig.json && tscpaths -p tsconfig.json -s src -o dist",
"predev": "pnpm run codegen",
"dev": "sh ./scripts/start.sh",
"start": "node -r newrelic dist/index.js",
"start:dev": "tsx watch src",
"test": "jest --coverage --testMatch \"**/?(*.)+(unit|spec).test.ts\"",
"test:integration": "jest --coverage --testMatch \"**/?(*.)+(integration).test.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm run lint && pnpm run format",
"fix": "pnpm run lint:fix && pnpm run format",
"docker:up": "docker compose -p magiscribe-api up -d",
"docker:down": "docker compose -p magiscribe-api down",
"db:import": "tsx seed/import.ts",
"db:export": "tsx seed/export.ts",
"db:clean": "tsx seed/clean.ts",
"db:script": "tsx scripts/${SCRIPT}.ts",
"codegen": "graphql-codegen --config codegen.ts"
},
"engines": {
"node": ">=20.0"
},
"dependencies": {
"@apollo/server": "^5.1.0",
"@as-integrations/fastify": "^3.1.0",
"@aws-sdk/client-bedrock-runtime": "^3.922.0",
"@aws-sdk/client-lambda": "^3.922.0",
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/client-ses": "^3.922.0",
"@aws-sdk/client-sqs": "^3.922.0",
"@aws-sdk/lib-storage": "^3.922.0",
"@aws-sdk/s3-request-presigner": "^3.922.0",
"@clerk/backend": "^2.19.1",
"@elevenlabs/elevenlabs-js": "^2.21.0",
"@eslint/js": "^9.39.0",
"@fastify/cors": "^11.1.0",
"@graphql-tools/schema": "^10.0.26",
"@graphql-tools/utils": "^10.10.0",
"@langchain/community": "^1.0.0",
"@langchain/core": "^1.0.2",
"@modelcontextprotocol/sdk": "^1.21.0",
"@newrelic/apollo-server-plugin": "^8.0.0",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"elevenlabs-js": "^1.2.6",
"fastify": "^5.6.1",
"globals": "^16.5.0",
"graphql": "^16.12.0",
"graphql-redis-subscriptions": "^2.7.0",
"graphql-subscriptions": "^3.0.0",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"graphql-ws": "^6.0.6",
"jest": "^30.2.0",
"mcp-client": "1.13.1",
"mongoose": "^8.19.2",
"newrelic": "^13.6.2",
"pino": "^10.1.0",
"tscpaths": "^0.0.9",
"uuid": "^13.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@graphql-codegen/cli": "6.0.1",
"@graphql-codegen/typescript": "5.0.2",
"@graphql-codegen/typescript-resolvers": "5.1.0",
"@parcel/watcher": "^2.5.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"pino-pretty": "^13.1.2",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
}