-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "mrcryptoindexer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "v20.9.0"
},
"workspaces": [
"web"
],
"packageManager": "pnpm@8.10.2",
"scripts": {
"start": "pnpm build && node dist/server",
"clean": "git clean -xdf dist",
"clean:node": "git clean -xdf node_modules",
"metadata:codegen": "pnpm ts-node src/indexer/metadata/script.ts",
"lint": "tsc --noEmit --pretty",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"build": "npm -s run db:generate && tsup && npm run build:schema",
"build:schema": "ts-node -r tsconfig-paths/register src/schema/index.ts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "prisma db seed",
"db:reset": "prisma db push --force-reset"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "2.4.6",
"@types/jsonwebtoken": "9.0.5",
"@types/node": "20.9.2",
"@types/ws": "^8.5.9",
"cross-env": "7.0.3",
"prettier": "^3.1.0",
"prisma": "^5.6.0",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.0"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"@pothos/core": "^3.38.0",
"@pothos/plugin-prisma": "^3.61.0",
"@pothos/plugin-relay": "^3.44.0",
"@pothos/plugin-scope-auth": "^3.20.0",
"@prisma/client": "^5.6.0",
"@t3-oss/env-core": "^0.7.1",
"bcryptjs": "2.4.3",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.4",
"graphql-yoga": "5.0.0",
"jsonwebtoken": "9.0.2",
"typescript": "5.2.2",
"viem": "^1.19.3",
"zod": "^3.22.4"
}
}