-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "nova",
"version": "0.0.1",
"description": "Nova, the API server for Nexirift.",
"author": "Nexirift",
"license": "GPL-3.0-only",
"main": "server.ts",
"scripts": {
"dev": "bun --watch src/server.ts",
"start": "bun src/server.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun drizzle/migrate.ts ./drizzle",
"db:studio": "drizzle-kit studio"
},
"keywords": [],
"dependencies": {
"@aws-sdk/client-s3": "^3.712.0",
"@aws-sdk/lib-storage": "^3.712.0",
"@nexirift/plugin-oidc": "^1.0.3",
"@pothos/core": "^4.3.0",
"@pothos/plugin-errors": "^4.2.0",
"@pothos/plugin-scope-auth": "^4.1.1",
"@pothos/plugin-smart-subscriptions": "^4.1.1",
"@pothos/plugin-validation": "^3.10.2",
"@types/node": "^22.10.2",
"debug": "^4.4.0",
"drizzle-kit": "0.29.1",
"drizzle-orm": "^0.37.0",
"gradient-string": "^3.0.0",
"graphql": "^16.9.0",
"graphql-scalars": "^1.24.0",
"graphql-subscriptions": "^3.0.0",
"graphql-ws": "^5.16.0",
"graphql-yoga": "^5.10.5",
"mime-types": "^2.1.35",
"pg": "^8.13.1",
"redis": "^4.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@electric-sql/pglite": "^0.2.15",
"@faker-js/faker": "^9.3.0",
"@types/bun": "^1.1.14",
"@types/debug": "^4.1.12",
"@types/gradient-string": "^1.1.6",
"@types/mime-types": "^2.1.4",
"@types/pg": "^8.11.10",
"aws-sdk-client-mock": "^4.1.0",
"redis-memory-server": "^0.11.0",
"typescript": "^5.7.2"
}
}