-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "@the-tricktionary/api",
"version": "1.0.0",
"description": "GraphQL API for the Tricktionary",
"scripts": {
"build": "tsc -p tsconfig.production.json",
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "npm run codegen -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-tricktionary/api.git"
},
"author": "the Tricktionary <[email protected]> (https://the-tricktionary.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-tricktionary/api/issues"
},
"homepage": "https://the-tricktionary.com",
"dependencies": {
"@apollo/server": "^4.10.4",
"@apollo/utils.keyvaluecache": "^3.1.0",
"@google-cloud/firestore": "^7.8.0",
"@graphql-tools/merge": "^9.0.4",
"@graphql-tools/schema": "^10.0.4",
"@sentry/node": "^8.11.0",
"algoliasearch": "^4.23.3",
"apollo-datasource-firestore": "^6.2.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"firebase-admin": "^12.2.0",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"pino": "^9.2.0",
"stripe": "^15.12.0",
"undici": "^6.19.2",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript-resolvers": "^4.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/cors": "^2.8.17",
"@types/node": "^20.14.8",
"apollo-server-plugin-base": "^3.3.0",
"eslint": "^8.1.0",
"eslint-config-love": "^53.0.0",
"pino-pretty": "^11.2.1",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
}
}