-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.41 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
36
37
38
39
40
41
42
43
{
"name": "root",
"private": true,
"author": "ChainSafe <[email protected]>",
"license": "(Apache-2.0 AND MIT)",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"manifest": "yarn workspace @safient/metasafe-snap manifest",
"build:snap": "yarn workspace @safient/metasafe-snap build",
"build:adapter": "yarn workspace @safient/metasafe-adapter build",
"start:snap": "yarn workspace @safient/metasafe-snap serve",
"start:client": "REACT_APP_SNAP=local yarn workspace client start",
"predemo": "yarn run build:snap && yarn run build:adapter",
"build": "yarn workspaces foreach -vpt run build",
"test": "yarn workspaces foreach -vp run test",
"lint": "yarn workspaces foreach -vp run lint",
"lint:style:fix": "yarn workspaces foreach -vp run lint:style:fix",
"demo": "yarn run demo:local",
"demo:local": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:client\""
},
"devDependencies": {
"@chainsafe/eslint-config": "^1.0.0",
"@rushstack/eslint-patch": "^1.1.4",
"@types/eslint": "^7",
"@types/mocha": "^9.1.1",
"@types/node": "^12.12.35",
"concurrently": "^7.1.0",
"eslint": "7",
"mocha": "^10.0.0",
"ts-node": "^10.8.0",
"typescript": "4.6.4"
},
"resolutions": {
"web3/bignumber.js": "2.0.8",
"ethereumjs-abi": "0.6.8"
}
}