forked from Synthetixio/synthetix-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 loc) · 1.45 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": "kwenta-subgraph",
"license": "MIT",
"version": "1.2.1",
"author": "Kwenta",
"main": "index.js",
"browser": "index.min.js",
"bin": {
"snxData": "bin.js"
},
"scripts": {
"lint": "eslint src/ scripts/ subgraphs/",
"lint:fix": "eslint --fix src/ scripts/ subgraphs/",
"prepare": "husky install",
"auth": "graph auth --product hosted-service",
"deploy": "node ./scripts/deploy.js",
"build": "node ./scripts/deploy.js --build-only --team noneya --network optimism --provider hosted_service --version 0.0.1-test"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.68.3",
"@graphprotocol/graph-ts": "0.27.0",
"@graphql-tools/merge": "^8.2.1",
"chalk": "4.1.2",
"codegen-graph-ts": "^0.1.4",
"commander": "8.2.0",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.3.0",
"graph-cli": "^0.0.1",
"mustache": "4.2.0",
"synthetix": "2.98.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"eslint": "7.32.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"lint-staged": "11.1.2",
"minify": "7.2.1",
"node-fetch": "^2.7.0",
"prettier": "2.4.1",
"typescript": "4.4.3"
},
"overrides": {
"concat-stream": "2.0.0"
}
}