-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "synthetix-subgraph",
"license": "MIT",
"version": "1.2.1",
"author": "Synthetix",
"main": "index.js",
"browser": "index.min.js",
"bin": {
"snxData": "bin.js"
},
"scripts": {
"lint": "eslint src/ scripts/ subgraphs/",
"prepare": "husky install",
"deploy": "node ./scripts/deploy.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.25.1",
"@graphprotocol/graph-ts": "0.24.1",
"@graphql-tools/merge": "^8.2.1",
"chalk": "4.1.2",
"commander": "8.2.0",
"eslint-config-prettier": "^8.3.0",
"mustache": "4.2.0",
"synthetix": "^2.73.1"
},
"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.6.7",
"prettier": "2.4.1",
"typescript": "4.4.3"
}
}