forked from leapwallet/cosmos-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 4.32 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "leap-cosmos",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": "true",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": []
},
"scripts": {
"ci": "yarn run check && yarn run test",
"check:prettier": "yarn workspaces run prettier:check",
"check:eslint": "yarn workspaces run eslint:lint",
"check": "run-p check:*",
"fix:prettier": "yarn workspaces run prettier:write",
"fix:eslint": "yarn workspaces run eslint:fix",
"fix": "run-p fix:*",
"buildw:walletsdk": "yarn workspace @leapwallet/cosmos-wallet-sdk build:watch",
"buildw:wallethooks": "yarn workspace @leapwallet/cosmos-wallet-hooks build:watch",
"buildw:provider": "yarn workspace @leapwallet/cosmos-wallet-provider build:watch",
"build:watch": "run-p buildw:*",
"start:demo": "yarn workspace @leap-cosmos/demo start",
"start:ext": "yarn workspace @leap-cosmos/extension start",
"start:ext:compass": "yarn workspace @leap-cosmos/extension start:compass",
"start:extension": "run-p build:watch start:ext",
"start:extension:compass": "run-p build:watch start:ext:compass",
"build:walletsdk": "yarn workspace @leapwallet/cosmos-wallet-sdk build",
"build:walletapi": "yarn workspace @leapwallet/wallet-api build",
"build:wallethooks": "yarn workspace @leapwallet/cosmos-wallet-hooks build",
"build:walletprovider": "yarn workspace @leapwallet/cosmos-wallet-provider build",
"build:packages": "run-s build:walletsdk build:walletapi build:wallethooks build:walletprovider",
"build:ext": "yarn workspace @leap-cosmos/extension build",
"build:ext:compass": "yarn workspace @leap-cosmos/extension build:compass",
"build:ext-canary": "yarn workspace @leap-cosmos/extension build:canary",
"build:ext:canary-compass": "yarn workspace @leap-cosmos/extension build:canary-compass",
"build:extension": "run-s build:packages build:ext",
"build:extension:compass": "run-s build:packages build:ext:compass",
"build:extension-canary": "run-s build:packages build:ext-canary",
"build:extension:canary-compass": "run-s build:packages build:ext:canary-compass",
"build:extension:all": "run-s build:extension build:extension:compass",
"build:extension:canary-all": "run-s build:extension-canary build:extension:canary-compass",
"build:ext:staging": "yarn workspace @leap-cosmos/extension build:staging",
"build:extension:staging": "run-s build:packages build:ext:staging",
"build:demo": "yarn workspace @leap-cosmos/demo build",
"deploy:demo": "yarn workspace @leap-cosmos/demo deploy",
"release:demo": "yarn build:demo && yarn deploy:demo",
"test:extension": "yarn workspace @leap-cosmos/extension test",
"test": "yarn workspaces run test --passWithNoTests",
"publish:walletsdk": "yarn workspace @leapwallet/cosmos-wallet-sdk publish --non-interactive",
"publish:types": "yarn workspace @leapwallet/types publish --non-interactive",
"bootstrap": "yarn --ignore-engines",
"publish:ci": "lerna publish from-package --yes",
"version:ci": "lerna version --yes --conventional-commits --create-release github --message 'chore(release): publish'",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"prepare": "husky install",
"postinstall": "patch-package"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"flexsearch": "0.7.31",
"husky": "8.0.2",
"lerna": "7.1.5",
"markdown-it": "13.0.1",
"npm-run-all": "4.1.5",
"patch-package": "8.0.0",
"postinstall-postinstall": "2.1.0",
"prettier": "2.7.1",
"vitepress": "1.0.0-alpha.29",
"vue": "3.3.4"
},
"dependencies": {
"axios": "1.2.1",
"vitepress-plugin-search": "1.0.4-alpha.20"
},
"resolutions": {
"axios": "1.2.1",
"long": "5.2.1",
"framer-motion": "6.3.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"snakecase-keys": "5.4.1",
"typescript": "5.3.3",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}