forked from deltabridge/omnibridge-nft-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.79 KB
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
{
"name": "@omnibridge-nft/ui",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"subgraph:auth": "yarn workspace @omnibridge-nft/subgraph auth",
"subgraph:codegen": "yarn workspace @omnibridge-nft/subgraph codegen",
"subgraph:build": "yarn workspace @omnibridge-nft/subgraph build",
"subgraph:prepare-xdai-mainnet": "yarn workspace @omnibridge-nft/subgraph prepare-xdai-mainnet",
"subgraph:deploy-xdai-mainnet": "yarn workspace @omnibridge-nft/subgraph deploy-xdai-mainnet",
"subgraph:prepare-mainnet-xdai": "yarn workspace @omnibridge-nft/subgraph prepare-mainnet-xdai",
"subgraph:deploy-mainnet-xdai": "yarn workspace @omnibridge-nft/subgraph deploy-mainnet-xdai",
"subgraph:prepare-xdai-rinkeby": "yarn workspace @omnibridge-nft/subgraph prepare-xdai-rinkeby",
"subgraph:deploy-xdai-rinkeby": "yarn workspace @omnibridge-nft/subgraph deploy-xdai-rinkeby",
"subgraph:prepare-rinkeby-xdai": "yarn workspace @omnibridge-nft/subgraph prepare-rinkeby-xdai",
"subgraph:deploy-rinkeby-xdai": "yarn workspace @omnibridge-nft/subgraph deploy-rinkeby-xdai",
"subgraph:prepare-sokol-kovan": "yarn workspace @omnibridge-nft/subgraph prepare-sokol-kovan",
"subgraph:deploy-sokol-kovan": "yarn workspace @omnibridge-nft/subgraph deploy-sokol-kovan",
"subgraph:prepare-kovan-sokol": "yarn workspace @omnibridge-nft/subgraph prepare-kovan-sokol",
"subgraph:deploy-kovan-sokol": "yarn workspace @omnibridge-nft/subgraph deploy-kovan-sokol",
"dapp:build": "yarn workspace @omnibridge-nft/dapp build",
"dapp:eject": "yarn workspace @omnibridge-nft/dapp eject",
"dapp:start": "yarn workspace @omnibridge-nft/dapp start",
"dapp:test": "yarn workspace @omnibridge-nft/dapp test",
"dapp:lint": "yarn workspace @omnibridge-nft/dapp lint",
"lint": "eslint --ignore-path .gitignore \"./packages/**/*.{ts,tsx,js,jsx}\"",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,tsx,js,jsx,json,md}\"",
"prepare": "husky install"
},
"workspaces": {
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**"
],
"packages": [
"packages/*"
]
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
},
"license": "UNLICENSED",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": "prettier --write"
}
}