-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.77 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
{
"name": "@otomadb/graphql-api",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "run-p 'build:watch' 'nodemon'",
"nodemon": "nodemon -w dist dist/index.mjs",
"codegen": "graphql-codegen-esm",
"codegen:watch": "graphql-codegen-esm --watch",
"prisma:generate": "prisma generate",
"buf:generate": "buf generate ./proto",
"prebuild": "run-s 'buf:generate' 'prisma:generate' 'codegen'",
"build": "tsx ./build.ts",
"build:watch": "tsx ./build.ts watch",
"typecheck": "tsc --noEmit",
"test": "vitest",
"lint": "run-s 'lint:*'",
"lint:eslint": "eslint . --ext '.js,.jsx,.ts,.tsx'",
"lint:prettier": "prettier --check .",
"lint:graphql-schema-linter": "graphql-schema-linter './src/schema.graphql'"
},
"repository": "https://github.com/otomad-database/api",
"license": "MIT",
"dependencies": {
"@bufbuild/protobuf": "^1.4.2",
"@connectrpc/connect": "^1.1.3",
"@connectrpc/connect-node": "^1.1.3",
"@devoxa/prisma-relay-cursor-connection": "^3.0.0",
"@envelop/generic-auth": "^7.0.0",
"@prisma/client": "5.8.1",
"auth0": "4.2.0",
"graphql": "^16.6.0",
"graphql-scalars": "^1.22.4",
"graphql-tag": "^2.12.6",
"graphql-yoga": "^5.0.0",
"ioredis": "^5.3.1",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"meilisearch": "^0.34.0",
"neo4j-driver": "^5.3.0",
"pg": "^8.8.0",
"pino": "^8.10.0",
"ulid": "^2.3.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@bufbuild/buf": "1.28.1",
"@bufbuild/protoc-gen-es": "1.6.0",
"@connectrpc/protoc-gen-connect-es": "1.1.3",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.1.0",
"@graphql-codegen/schema-ast": "4.0.2",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-resolvers": "4.0.6",
"@graphql-tools/executor-http": "1.0.9",
"@graphql-tools/schema": "10.0.3",
"@graphql-tools/utils": "10.0.13",
"@graphql-typed-document-node/core": "3.2.0",
"@rollup/plugin-graphql": "2.0.4",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"eslint-plugin-vitest": "0.3.26",
"graphql-schema-linter": "3.0.1",
"lefthook": "1.6.9",
"nodemon": "3.0.3",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"prisma": "5.8.1",
"tsx": "4.7.2",
"typescript": "5.3.3",
"vitest": "0.34.6",
"vitest-mock-extended": "1.3.1"
},
"peerDependencies": {
"@parcel/watcher": "2.3.0"
}
}