-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.63 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
{
"name": "boid-worker",
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "tsc && tsc-alias -f",
"dev": "rimraf dist && tsc-watch --onSuccess 'tsc-alias -f'",
"db:up": "prisma db push",
"db:reset": "prisma db push --force-reset",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext .ts --fix",
"relayer": "cd dist && LOGLEVEL=DEBUG node ./servers/relayer.js",
"relayer:dev": "cd dist && LOGLEVEL=DEBUG nodemon -d 3 ./servers/relayer.js",
"cpRelayer": "cp ./dist/servers/relayer.d.ts ../boid-web/src/lib/types ",
"cpHistory": "cp ./dist/servers/history.d.ts ../boid-web/src/lib/types "
},
"license": "ISC",
"devDependencies": {
"@digitak/tsc-esm": "^3.1.4",
"@types/axios": "^0.14.0",
"@types/fs-extra": "^9.0.13",
"@types/ms": "^0.7.31",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.36.1",
"concurrently": "^8.2.2",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.19",
"prisma": "^5.12.1",
"rimraf": "^6.0.1",
"tsc-alias": "^1.7.0",
"typescript": "*"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"@proton/hyperion": "^3.4.0",
"@proton/vert": "^0.3.24",
"@trpc/client": "^10.42.0",
"@trpc/server": "^10.42.0",
"@types/cache-manager": "^4.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/isomorphic-fetch": "^0.0.36",
"@types/swagger-ui-express": "^4.1.3",
"@wharfkit/antelope": "^1.0.7",
"@wharfkit/contract": "^1.1.5",
"atomicassets": "^1.5.1",
"axios": "^1.6.7",
"cache-manager": "^5.1.4",
"chalk": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"edgedb": "^1.0.2",
"eosjs": "^22.1.0",
"express": "^4.18.1",
"express-blacklist": "^1.0.3",
"express-rate-limit": "^6.6.0",
"fast-xml-parser": "^4.3.4",
"fs-extra": "^11.1.0",
"greenlock-proxy": "^0.2.0",
"greenlock-proxy-handler": "^0.0.1",
"ipfs-core": "^0.17.0",
"ipfs-http-client": "^59.0.0",
"isomorphic-fetch": "^3.0.0",
"loglevel": "^1.8.0",
"loglevel-plugin-prefix": "^0.8.4",
"moment": "^2.29.4",
"ms": "^2.1.3",
"multiformats": "^11.0.0",
"node-fetch": "^3.2.10",
"node-mailjet": "^6.0.0",
"swagger-ui-express": "^4.6.2",
"tozod": "^3.0.0",
"trpc-openapi": "^1.1.0",
"tsc-watch": "^6.0.4",
"uint8arraylist": "2.4.3",
"ws": "^8.9.0",
"zod": "^3.20.2"
}
}