-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 913 Bytes
/
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
{
"name": "lux-bridge",
"version": "1.0.0",
"author": "Lux Partners Limited <[email protected]> (https://lux.partners)",
"private": true,
"keywords": [
"ai",
"ethereum",
"nft",
"lux",
"luxdefi",
"bridge",
"exchange",
"swap"
],
"scripts": {
"build": "pnpm build:all",
"build:all": "pnpm build:app && pnpm build:explorer && pnpm build:sdk",
"build:app": "pnpm --filter @luxbridge/app build",
"build:explorer": "pnpm --filter @luxbridge/explorer build",
"build:sdk": "pnpm --filter @luxbridge/sdk build",
"build:storybook": "pnpm --filter @luxbridge/app build:storybook",
"start": "pnpm --filter @luxbridge/app start",
"dev": "pnpm --filter @luxbridge/app dev"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"pnpm": {
"allowedDeprecatedVersions": {
"request": "*"
}
}
}