-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.15 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.15 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
31
32
33
34
{
"name": "root",
"private": true,
"author": "ChainSafe <info@chainsafe.io>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"enginge": {
"node": ">=16"
},
"scripts": {
"build:snap": "lerna run build --scope @chainsafe/minasnap",
"start:snap": "lerna run start --scope @chainsafe/minasnap",
"start:snap:watch": "lerna run watch --scope @chainsafe/minasnap",
"start:demo:local": "REACT_APP_SNAP=local lerna run start --scope demo-dapp",
"build": "yarn run build:local",
"build:local": "REACT_APP_SNAP=local lerna run build",
"build:demo": "CI=false lerna run build --scope demo-dapp",
"test": "lerna run test",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"demo": "yarn run demo:local",
"demo:local": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:demo:local\"",
"demo:watch": "concurrently --raw --kill-others \"yarn run start:snap:watch \" \"yarn run start:demo:local\""
},
"devDependencies": {
"@types/node": "^12.12.35",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^3.20.2",
"prettier": "^2.6.2",
"typescript": "4.3.5"
}
}