forked from omni/omnibridge-ui
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 2.25 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
56
57
58
59
60
61
62
{
"name": "omnibridge",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"subgraph:auth": "yarn workspace @omnibridge/subgraph auth",
"subgraph:codegen": "yarn workspace @omnibridge/subgraph codegen",
"subgraph:build": "yarn workspace @omnibridge/subgraph build",
"subgraph:prepare-kovan": "yarn workspace @omnibridge/subgraph prepare-kovan",
"subgraph:deploy-kovan": "yarn workspace @omnibridge/subgraph deploy-kovan",
"subgraph:prepare-sokol": "yarn workspace @omnibridge/subgraph prepare-sokol",
"subgraph:deploy-sokol": "yarn workspace @omnibridge/subgraph deploy-sokol",
"subgraph:prepare-xdai": "yarn workspace @omnibridge/subgraph prepare-xdai",
"subgraph:deploy-xdai": "yarn workspace @omnibridge/subgraph deploy-xdai",
"subgraph:prepare-mainnet": "yarn workspace @omnibridge/subgraph prepare-mainnet",
"subgraph:deploy-mainnet": "yarn workspace @omnibridge/subgraph deploy-mainnet",
"react-app:build": "yarn workspace @omnibridge/react-app build",
"react-app:eject": "yarn workspace @omnibridge/react-app eject",
"react-app:start": "yarn workspace @omnibridge/react-app start",
"react-app:test": "yarn workspace @omnibridge/react-app test",
"react-app:lint": "yarn workspace @omnibridge/react-app lint",
"lint": "eslint --ignore-path .gitignore \"./packages/**/*.{ts,tsx,js,jsx}\" --fix",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,tsx,js,jsx,json,md}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"workspaces": {
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**"
],
"packages": [
"packages/*"
]
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.6",
"eslint-plugin-simple-import-sort": "5.0.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.0.5"
},
"license": "UNLICENSED",
"lint-staged": {
"*.{js,jsx}": "eslint --fix",
"*.{ts,tsx,js,jsx,json,md}": "prettier --write"
}
}