-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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": "@strata-foundation/api",
"version": "1.0.0",
"private": true,
"description": "Strata GraphQL API",
"keywords": [
"graphql-codegen"
],
"license": "MIT",
"author": "Strata Foundation",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsup-node --watch --onSuccess \"cross-env NODE_ENV=development node dist/index.js\" src/index.ts",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "cross-env NODE_ENV=test tap --node-arg=--require=esbuild-register",
"bootstrap": "npm run build && node dist/bootstrap.js"
},
"dependencies": {
"@fastify/websocket": "^5.0.0",
"@project-serum/anchor": "^0.22.0",
"@solana/spl-token": "0.1.8",
"@solana/web3.js": "^1.43.4",
"@strata-foundation/spl-token-bonding": "^3.2.5-bounty.3",
"@types/amqplib": "^0.8.2",
"@types/redis": "^2.8.31",
"@types/uuid": "^8.3.4",
"amqplib": "^0.10.1",
"axios": "^0.26.0",
"fastify": "^3.19.2",
"fastify-cors": "^6.0.2",
"graphql": "^15.5.1",
"mercurius": "^8.1.1",
"mercurius-codegen": "workspace:^1.7.0",
"pg": "^8.7.3",
"redis": "^3.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-typed-document-node/core": "^3.1.0",
"@types/axios": "^0.14.0",
"@types/busboy": "^0.2.4",
"@types/node": "^16.4.6",
"@types/tap": "^15.0.5",
"cross-env": "^7.0.3",
"esbuild-register": "^2.6.0",
"mercurius-integration-testing": "^3.2.0",
"tap": "^15.0.9",
"tsup": "^4.12.5",
"typescript": "^4.3.5"
}
}