-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.58 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
{
"name": "verity-move-oracles",
"version": "0.0.1",
"description": "An Oracle Network for sourcing and verifying data from restricted APIs on Move oriented blockchains.",
"main": "./orchestrator/build/index.js",
"engines": {
"node": ">=18"
},
"type": "module",
"keywords": ["web3", "crypto", "blockchain", "move", "verity", "smart-contracts"],
"author": "Ryan Soury <labs@usher.so>",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/usherlabs/verity-move-oracles/issues"
},
"homepage": "https://github.com/usherlabs/verity-move-oracles#readme",
"scripts": {
"dev": "tsup --watch --onSuccess 'node dist/index.cjs'",
"build": "tsup",
"start": "node dist/index.cjs",
"lint": "biome check orchestrator/src/",
"lint:fix": "biome check orchestrator/src/ --fix",
"clean": "del dist",
"clean:db": "del ./orchestrator/prisma/.db*",
"prepare": "husky",
"format": "biome format orchestrator/src/ --fix",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org usherlabs --project verity-move-oracles ./dist && sentry-cli sourcemaps upload --org usherlabs --project verity-move-oracles ./dist",
"test": "jest --runInBand ",
"prisma:generate": "prisma generate --schema=./orchestrator/prisma/schema.prisma",
"prisma:deploy": "prisma migrate deploy --schema=./orchestrator/prisma/schema.prisma",
"prisma:studio": "prisma studio --schema=./orchestrator/prisma/schema.prisma"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@sentry/cli": "^2.33.1",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.7",
"@types/node": "^22.4.2",
"chalk": "^5.3.0",
"del-cli": "^5.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prisma": "5.19.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.29.1",
"@prisma/client": "5.19.1",
"@roochnetwork/rooch-sdk": "^0.2.9",
"@sentry/node": "^8.26.0",
"@sentry/profiling-node": "^8.26.0",
"axios": "^1.7.4",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"graphql-request": "5.1.0",
"joi": "^17.13.3",
"node-jq": "^6.0.1",
"ts-morph": "^24.0.0",
"tslog": "^4.9.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": ["biome check --apply --no-errors-on-unmatched"]
},
"prisma": {
"schema": "orchestrator/prisma/schema.prisma"
},
"tsup": {
"entry": ["./orchestrator/src"],
"splitting": false,
"sourcemap": true,
"clean": true
}
}