-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 4.61 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
{
"name": "core-components",
"version": "1.0.0",
"description": "Core components monorepo of the Boson Protocol",
"private": true,
"workspaces": [
"packages/*",
"e2e/meta-tx-gateway",
"e2e/opensea-api-mock"
],
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"lint": "eslint ./scripts && turbo run lint",
"lint:fix": "turbo run lint:fix",
"build": "turbo run build",
"test": "turbo run test",
"clean": "turbo run clean",
"codegen": "turbo run codegen",
"version": "echo 'not implemented'",
"e2e:suite": "run-script-os",
"e2e:suite:default": "./e2e/run-e2e-suite.sh",
"e2e:suite:win32": "cmd /c .\\e2e\\run-e2e-suite.cmd",
"e2e:test": "jest -c ./e2e/jest.config.js",
"e2e:services": "run-script-os",
"e2e:services:default": "./e2e/run-e2e-services.sh",
"e2e:services:win32": "cmd /c .\\e2e\\run-e2e-services.cmd",
"subgraph:deploy:local": "cd ./packages/subgraph && npm run deploy:local",
"export-abis": "ts-node ./scripts/export-abis.ts",
"dr:create": "ts-node -P tsconfig.base.json ./scripts/create-dispute-resolver.ts",
"dr:update": "ts-node -P tsconfig.base.json ./scripts/update-dispute-resolver.ts",
"deposit-funds": "ts-node -P tsconfig.base.json ./scripts/deposit-funds.ts",
"ipfs-upload": "ts-node -P tsconfig.base.json ./scripts/upload-to-ipfs.ts",
"explore-offer": "ts-node -P tsconfig.base.json ./scripts/explore-offer.ts",
"create-offer": "ts-node -P tsconfig.base.json ./scripts/create-offer.ts",
"create-pd-offer": "ts-node -P tsconfig.base.json ./scripts/create-price-discovery-offer.ts",
"opensea:wrap": "ts-node -P tsconfig.base.json ./scripts/opensea/wrap-vouchers.ts",
"opensea:list": "ts-node -P tsconfig.base.json ./scripts/opensea/create-listing.ts",
"opensea:bid": "ts-node -P tsconfig.base.json ./scripts/opensea/create-offer.ts",
"opensea:fulfil": "ts-node -P tsconfig.base.json ./scripts/opensea/fulfil-order.ts",
"ts-run": "ts-node -P tsconfig.base.json",
"create-offer-batch": "ts-node -P tsconfig.base.json ./scripts/create-offer-batch.ts",
"create-seller": "ts-node -P tsconfig.base.json ./scripts/create-seller.ts",
"update-seller": "ts-node -P tsconfig.base.json ./scripts/update-seller.ts",
"view-sellers": "ts-node -P tsconfig.base.json ./scripts/view-sellers.ts",
"get-seller": "ts-node -P tsconfig.base.json ./scripts/get-seller.ts",
"abi-signatures": "ts-node -P tsconfig.base.json ./scripts/abi-signatures.ts",
"abi-signatures:export": "ts-node -P tsconfig.base.json ./scripts/abi-signatures.ts --csv scripts/abi-signatures.csv",
"pin-to-pinata": "ts-node -P tsconfig.base.json ./scripts/pin-to-pinata.ts",
"complete-exchange": "ts-node -P tsconfig.base.json ./scripts/complete-exchange.ts",
"update-contract-uri": "ts-node -P tsconfig.base.json ./scripts/change-contract-uri.ts",
"check-offer-exchange-policy": "ts-node -P tsconfig.base.json ./scripts/checkOfferExchangePolicy.ts",
"get-buyers": "ts-node -P tsconfig.base.json ./scripts/get-buyers.ts",
"ts-coverage": "typescript-coverage-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosonprotocol/core-components.git"
},
"author": "Boson Protocol",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bosonprotocol/core-components/issues"
},
"homepage": "https://github.com/bosonprotocol/core-components#readme",
"devDependencies": {
"@graphprotocol/graph-cli": "0.68.5",
"@graphprotocol/graph-ts": "0.33.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@opensea/seaport-js": "^4.0.0",
"@types/jest": "^29.5.4",
"@typescript-es