-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 2.39 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
{
"name": "Ideamarket",
"license": "UNLICENSED",
"scripts": {
"build:test": "node build.js --test --branch %npm_config_branch% --branch $npm_config_branch --start-block %npm_config_startblock% --start-block $npm_config_startblock && graph build",
"build:test-avm-l1": "node build.js --test-avm-l1 --branch %npm_config_branch% --branch $npm_config_branch --start-block %npm_config_startblock% --start-block $npm_config_startblock && graph build",
"build:test-avm-l2": "node build.js --test-avm-l2 --branch %npm_config_branch% --branch $npm_config_branch --start-block %npm_config_startblock% --start-block $npm_config_startblock && graph build",
"build:rinkeby": "node build.js --rinkeby && graph build",
"build:mainnet": "node build.js --mainnet && graph build",
"deploy:test": "graph build && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ Ideamarket/IdeamarketTEST",
"deploy:rinkeby": "graph build && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ Ideamarket/IdeamarketRINKEBY",
"deploy:mainnet": "graph build && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ Ideamarket/Ideamarket",
"create-local": "graph create --node http://localhost:8020/ Ideamarket/Ideamarket",
"remove-local": "graph remove --node http://localhost:8020/ Ideamarket/Ideamarket",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 Ideamarket/Ideamarket",
"lint": "eslint --fix --ext .js,.ts,.tsx --ignore-path .gitignore .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write",
"prepare": "husky install"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.18.0",
"@graphprotocol/graph-ts": "0.18.0",
"mustache": "^4.0.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitlint": "^12.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"npm run lint"
],
"*.+(js|json|ts|tsx)": [
"npm run format"
]
}
}