-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
{
"private": true,
"name": "kirby-web3",
"version": "1.0.0",
"homepage": "https://github.com/joincivil/kirby-web3#readme",
"author": "Civil Media Company",
"license": "Apache 2.0",
"description": "",
"scripts": {
"lint": "lerna run lint --parallel",
"watch": "lerna run --parallel build:watch",
"clean": "lerna run clean --parallel",
"build": "lerna run build --sort",
"release": "multi-semantic-release",
"netlify:child-app": "netlify deploy --prod --dir packages/child-app/build --site $NETLIFY_SITE_ID_CHILD_APP",
"netlify:demo": "netlify deploy --prod --dir packages/demo/build --site $NETLIFY_SITE_ID_DEMO",
"test": "CI=true lerna run test --stream --sort",
"prettier": "prettier --config .prettierrc.yaml --write --list-different './**/*.{ts,tsx,json,md}'"
},
"resolutions": {
"ethers": "^4.0.33",
"web3-eth-abi/ethers": "^4.0.33"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joincivil/kirby-web3.git"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/config-lerna-scopes": "^8.1.0",
"@commitlint/prompt-cli": "^8.1.0",
"husky": "^3.0.4",
"lerna": "^3.15.0",
"multi-semantic-release": "^1.1.0",
"netlify-cli": "^2.12.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}