-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 1.11 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
{
"name": "root",
"private": true,
"author": "AstroX <[email protected]>",
"license": "(Apache-2.0 AND MIT)",
"workspaces": [
"packages/*"
],
"scripts": {
"build:snap": "lerna run build --scope @astrox/icsnap",
"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 clean && yarn build:types && yarn build:snap && yarn build:adapter && yarn build:example",
"start:snap": "lerna run serve --scope @astrox/icsnap",
"start:example:local": "cd packages/example && rm -rf .dfx && dfx deploy && 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"
}
}