forked from SmartInvoiceXYZ/smart-invoice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "smart-invoice",
"version": "0.1.0",
"keywords": [
"ethereum",
"smart-invoice",
"escrow",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"subgraph:auth": "yarn workspace @smart-invoice/subgraph auth",
"subgraph:codegen": "yarn workspace @smart-invoice/subgraph codegen",
"subgraph:build": "yarn workspace @smart-invoice/subgraph build",
"subgraph:deploy-kovan": "yarn workspace @smart-invoice/subgraph deploy-kovan",
"subgraph:deploy-rinkeby": "yarn workspace @smart-invoice/subgraph deploy-rinkeby",
"dapp:start": "yarn workspace @smart-invoice/dapp start",
"dapp:build": "yarn workspace @smart-invoice/dapp build",
"docs:start": "yarn workspace @smart-invoice/docs start",
"docs:build": "yarn workspace @smart-invoice/docs build",
"contracts:build": "yarn workspace @smart-invoice/contracts build",
"contracts:lint": "yarn workspace @smart-invoice/contracts lint",
"contracts:test": "yarn workspace @smart-invoice/contracts test",
"contracts:deploy-factory": "yarn workspace @smart-invoice/contracts deploy-factory",
"lint": "eslint --ignore-path .gitignore \"./packages/**/*.{ts,tsx,js,jsx}\"",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,tsx,js,jsx,json,md,sol}\"",
"prepare": "husky install"
},
"workspaces": {
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/@nomiclabs/**",
"**/solidity-coverage",
"**/bulma",
"**/@ethersproject/**",
"**/@docusaurus/**"
],
"packages": [
"packages/*"
]
},
"license": "MIT",
"devDependencies": {
"async-prompt": "^1.0.1",
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"ethers": "^5.1.0",
"husky": "^6.0.0",
"it-all": "^1.0.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-beta.10"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,sol}": [
"prettier --write"
]
}
}