-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 2.25 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
{
"name": "deficonnect",
"description": "Monorepo for DeFiConnect",
"private": true,
"keywords": [
"wallet",
"DeFiConnect",
"DeFi Labs",
"chrome extension",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"author": "DeFi Labs <[email protected]>",
"homepage": "https://github.com/crypto-com/deficonnect-monorepo/",
"license": "Apache-2.0",
"scripts": {
"ls": "lerna ls",
"bootstrap": "npm install && run-s bootstrap:monorepo",
"bootstrap:monorepo": "lerna bootstrap --hoist",
"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:all": "run-s clean clean:node_modules",
"new-version": "npx lerna version patch --no-push --force-publish --force-git-tag --conventional-commits --conventional-graduate --yes",
"npm-publish:latest": "npx lerna exec -- npm publish --access public",
"npm-publish:local": "lerna exec -- npm publish --access public --registry http://localhost:4873/",
"npm-publish:next": "lerna exec -- npm publish --access public --tag next",
"check:skip-test": "run-s clean lint build",
"check": "run-s clean lint build",
"reset": "run-s clean:all bootstrap check",
"example": "run-s check:skip-test start",
"pre-publish": "run-s reset",
"publish:latest": "run-s pre-publish npm-publish:latest",
"publish:next": "run-s new-version pre-publish npm-publish:next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crypto-com/deficonnect-monorepo.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "6.2.2",
"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": "4.0.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"ts-node": "9.0.0"
}
}