-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
111 lines (111 loc) · 3.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "seaport-gossip",
"version": "0.0.1",
"description": "A peer-to-peer network for sharing Seaport orders.",
"author": "OpenSea",
"license": "MIT",
"files": [
"dist",
"src",
"prisma"
],
"engines": {
"node": ">=18"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"bin": {
"seaport-gossip": "./dist/bin/cli.js"
},
"scripts": {
"postinstall": "yarn build",
"build": "yarn prisma:generate && yarn build:ts",
"build:ts": "tsc -p tsconfig.prod.json",
"lint": "eslint src test prisma",
"lint:fix": "eslint src test prisma --fix",
"prisma:generate": "SKIP_PRISMA_VERSION_CHECK=true prisma generate",
"prisma:migrate": "prisma migrate",
"start": "NODE_OPTIONS='--experimental-json-modules' NODE_NO_WARNINGS=1 ts-node-esm src/bin/start.ts",
"start:devnet": "NODE_OPTIONS='--experimental-json-modules' NODE_NO_WARNINGS=1 ts-node-esm scripts/simulate/run-local-net.ts",
"test": "NODE_OPTIONS='--experimental-json-modules' NODE_NO_WARNINGS=1 mocha test/**/*.spec.ts --timeout 5000",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "yarn lint:fix"
},
"prisma": {
"seed": "ts-node-esm prisma/seed.ts"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^8.0.0",
"@chainsafe/libp2p-noise": "^12.0.1",
"@chainsafe/ssz": "^0.11.1",
"@libp2p/interfaces": "^3.3.2",
"@libp2p/kad-dht": "^9.3.6",
"@libp2p/mplex": "^8.0.3",
"@libp2p/peer-id": "^2.0.3",
"@libp2p/peer-id-factory": "^2.0.3",
"@libp2p/prometheus-metrics": "^1.1.5",
"@libp2p/websockets": "^6.0.3",
"@multiformats/multiaddr": "^12.1.3",
"@opensea/seaport-order-validator": "^0.1.1",
"@opensea/stream-js": "^0.1.1",
"@prisma/client": "^4.15.0",
"async-sema": "^3.1.1",
"bigint-buffer": "^1.1.5",
"class-validator": "^0.14.0",
"ethers": "^5.7.2",
"graphql": "^16.6.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.22.2",
"graphql-yoga": "^4.0.0",
"it-pipe": "^3.0.1",
"libp2p": "^0.45.5",
"merkletreejs": "^0.3.10",
"node-fetch": "^3.3.1",
"prom-client": "^14.2.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^2.0.0-beta.2",
"typegraphql-prisma": "^0.25.1",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@chainsafe/eslint-plugin-node": "^11.2.3",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/graphql-fields": "^1.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prisma": "^4.15.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ProjectOpenSea/seaport-gossip"
},
"homepage": "https://github.com/ProjectOpenSea/seaport-gossip#readme",
"bugs": {
"url": "https://github.com/ProjectOpenSea/seaport-gossip/issues"
}
}