-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 2.23 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
{
"name": "conflux-hub",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"dapps/*",
"packages/*"
],
"nohoist": [
"**/shuttle-flow"
]
},
"resolutions": {
"shuttle-flow/**/react": "17.0.2",
"shuttle-flow/**/react-dom": "17.0.2",
"shuttle-flow/**/rc-dropdown": "2.4.1",
"shuttle-flow/**/rc-notification": "4.4.0",
"shuttle-flow/**/rc-tooltip": "5.1.1",
"shuttle-flow/**/rc-trigger": "5.1.1",
"shuttle-flow/**/rc-util": "5.19.3",
"shuttle-flow/**/rc-motion": "2.4.1"
},
"scripts": {
"build": "turbo run build --scope=cross-space --scope=hub",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev": "turbo run dev --scope=hub",
"dev:hub-shuttle-flow": "turbo run dev --scope=hub --scope=shuttle-flow",
"dev:dapp-box": "turbo run dev --scope=hub",
"build:dapp-box": "turbo run build --scope=hub",
"dev:cross-space": "turbo run dev --scope=cross-space",
"build:cross-space": "turbo run build --scope=cross-space",
"dev:bsc-espace": "turbo run dev --scope=bsc-espace",
"build:bsc-espace": "turbo run build --scope=bsc-espace",
"dev:etc-espace": "turbo run dev --scope=bsc-espace",
"build:etc-espace": "turbo run build --scope=bsc-espace",
"dev:airdrop": "turbo run dev --scope=airdrop",
"build:airdrop": "turbo run build --scope=airdrop",
"dev:governance": "turbo run dev --scope=governance",
"build:governance": "turbo run build --scope=governance",
"dev:payment": "turbo run dev --scope=payment",
"build:payment": "turbo run build --scope=payment",
"dev:shuttle-flow": "turbo run dev --scope=shuttle-flow",
"build:shuttle-flow": "turbo run build --scope=shuttle-flow"
},
"devDependencies": {
"@types/node": "latest",
"prettier": "latest",
"turbo": "1.10.6",
"typescript": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"dependencies": {
"@use-gesture/react": "^10.2.27"
},
"packageManager": "[email protected]"
}