-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.97 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
{
"name": "@exactly/subgraph",
"version": "0.1.0",
"license": "AGPL-3.0-or-later",
"private": true,
"homepage": "https://exact.ly",
"repository": "github:exactly/subgraph",
"scripts": {
"test": "concurrently 'npm:test:*' --group -c auto",
"test:lint": "eslint --ext .ts,.js .",
"test:ts": "tsc -p tsconfig.dev.json",
"test:graph": "graph codegen && graph build",
"build": "graph build",
"codegen": "graph codegen",
"auth": "graph auth --studio",
"deploy": "graph deploy --studio",
"version": "changeset version && bun install && git commit --all --amend --no-edit",
"prepare:ethereum": "cross-env NETWORK=ethereum mustache views/protocol.js subgraph.template.yaml > subgraph.yaml",
"prepare:optimism": "cross-env NETWORK=optimism mustache views/protocol.js subgraph.template.yaml > subgraph.yaml",
"prepare:op-sepolia": "cross-env NETWORK=op-sepolia mustache views/protocol.js subgraph.template.yaml > subgraph.yaml",
"prepare": "bun prepare:op-sepolia && bun codegen"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@exactly/protocol": "exactly/protocol#96faa44",
"@graphprotocol/graph-ts": "^0.35.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@changesets/types": "^6.0.0",
"@graphprotocol/graph-cli": "^0.71.0",
"@types/eslint": "^8.56.10",
"@types/mustache": "^4.2.5",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"mustache": "^4.2.0",
"path-exists-cli": "^2.0.0",
"rescript": "^11.1.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5"
}
}