This repository was archived by the owner on Feb 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.93 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.93 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
{
"name": "xdai-omnibridge",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"subgraph:auth": "yarn workspace @project/subgraph auth",
"subgraph:codegen": "yarn workspace @project/subgraph codegen",
"subgraph:build": "yarn workspace @project/subgraph build",
"subgraph:prepare-mainnet": "yarn workspace @project/subgraph prepare-mainnet",
"subgraph:deploy-mainnet": "yarn workspace @project/subgraph deploy-mainnet",
"subgraph:prepare-idchain": "yarn workspace @project/subgraph prepare-idchain",
"subgraph:deploy-idchain": "yarn workspace @project/subgraph deploy-idchain",
"react-app:build": "yarn workspace @project/react-app build",
"react-app:eject": "yarn workspace @project/react-app eject",
"react-app:start": "yarn workspace @project/react-app start",
"react-app:test": "yarn workspace @project/react-app test",
"react-app:lint": "yarn workspace @project/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,yml,yaml,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,yml,yaml,md}": "prettier --write"
}
}