forked from ChainSafe/filsnap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.35 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
{
"name": "root",
"private": true,
"author": "ChainSafe <[email protected]>",
"license": "(Apache-2.0 AND MIT)",
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build:snap": "lerna run build --scope @chainsafe/filsnap",
"build:adapter": "lerna run build --scope @chainsafe/filsnap-adapter",
"start:snap": "lerna run serve --scope @chainsafe/filsnap",
"start:example:local": "REACT_APP_SNAP=local lerna run start --scope example",
"start:example:ipfs": "REACT_APP_SNAP=ipfs lerna run start --scope example",
"predemo": "yarn run build:snap && yarn run build:adapter",
"build": "yarn run build:ipfs",
"build:local": "REACT_APP_SNAP=local lerna run build",
"build:ipfs": "REACT_APP_SNAP=ipfs lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"lint:style:fix": "lerna run lint:style:fix",
"demo": "yarn run demo:local",
"demo:local": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:example:local\"",
"demo:ipfs": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:example:ipfs\""
},
"devDependencies": {
"lerna": "^3.20.2",
"@types/node": "^12.12.35",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.11.0",
"typescript": "4.3.5"
}
}