forked from BitizenWallet/bitizenconnect-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.56 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
{
"name": "walletconnect-monorepo",
"description": "Monorepo for WalletConnect",
"private": true,
"keywords": [
"wallet",
"walletconnect",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/WalletConnect/walletconnect-monorepo/",
"license": "Apache-2.0",
"scripts": {
"ls": "lerna ls",
"bootstrap": "npm install && run-s bootstrap:monorepo bootstrap:example",
"bootstrap:monorepo": "lerna bootstrap --hoist",
"bootstrap:example": "cd example && npm install",
"build": "lerna run build",
"test": "lerna run test",
"lint": "eslint -c './.eslintrc' --fix 'packages/*/*/**/*.ts'",
"clean": "rm -rf dist && lerna run clean",
"clean:node_modules": "lerna exec -- rm -rf node_modules",
"clean:example": "cd example && rm -rf node_modules",
"clean:all": "run-s clean clean:node_modules clean:example",
"new-version": "lerna version --no-git-tag-version",
"npm-publish:latest": "lerna exec -- npm publish --access public",
"npm-publish:next": "lerna exec -- npm publish --access public --tag next",
"health-check": "node ./scripts/health-check/index.js",
"move-dist": "node ./scripts/move-dist.js",
"commit-version": "node ./scripts/commit-version.js",
"check:skip-test": "run-s clean lint build move-dist",
"check": "run-s clean lint build test move-dist",
"reset": "run-s clean:all bootstrap check",
"start": "cd example && npm run start",
"example": "run-s check:skip-test start",
"pre-publish": "run-s new-version reset commit-version",
"publish:latest": "run-s pre-publish npm-publish:latest",
"publish:next": "run-s pre-publish npm-publish:next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.20.0",
"@typescript-eslint/parser": "2.20.0",
"discord.js": "12.2.0",
"eslint": "5.16.0",
"eslint-config-prettier": "6.10.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-standard": "4.0.1",
"lerna": "3.20.2",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"ts-node": "10.8.1"
}
}