-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.1 KB
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
{
"name": "root",
"private": true,
"author": "AstroX <dev@astrox.network>",
"license": "(Apache-2.0 AND MIT)",
"workspaces": [
"packages/*"
],
"scripts": {
"build:snap": "lerna run build --scope @astrox/ord-snap",
"build:types": "cd packages/types && tsc -b tsconfig.json",
"build:adapter": "cd packages/adapter && tsc -b tsconfig.json",
"build:example": "cd packages/example && rm -rf node_modules && yarn install",
"clean": "./scripts/clean.sh",
"build:all": "yarn run clean && yarn run build:types && yarn run build:snap && yarn run build:adapter && yarn run build:example",
"start:snap": "lerna run serve --scope @astrox/ord-snap",
"start:example:local": "cd packages/example && yarn run dev",
"start:example:production": "cd packages/example && yarn run dev",
"bootstrap": "lerna bootstrap",
"demo:local": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:example:local\""
},
"devDependencies": {
"lerna": "^4.0.0"
},
"dependencies": {
"@types/node": "^18.0.0",
"concurrently": "^7.1.0",
"tslib": "^2.3.1"
}
}