-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 759 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 759 Bytes
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
{
"name": "ethereum-deployment",
"version": "0.0.1",
"private": true,
"author": "IOV SAS <admin@iov.one>",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "types/index.d.ts",
"scripts": {
"generate-contracts": "web3x-codegen",
"postgenerate-contracts": "yarn format",
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
"build": "tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"typescript": "^3.5.2",
"web3x": "^3.0.11"
}
}