forked from availproject/metamask-snap-avail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.18 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
{
"name": "root",
"private": true,
"author": "ChainSafe <[email protected]>",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build:snap": "yarn workspace @chainsafe/polkadot-snap build",
"build:adapter": "yarn workspace @avail/metamask-polkadot-adapter build",
"start:snap": "yarn workspace @chainsafe/polkadot-snap serve",
"start:example": "yarn workspace example start",
"predemo": "yarn run build:snap && yarn run build:adapter",
"build": "yarn workspaces foreach -vpt run build",
"test": "yarn workspaces foreach -vpt run test",
"lint": "yarn workspaces foreach -vpt run lint",
"lint:style:fix": "yarn workspaces foreach -vp run lint:style:fix",
"demo": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:example\""
},
"devDependencies": {
"@chainsafe/eslint-config": "^2.1.1",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.47.0",
"prettier": "^3.0.2",
"typescript": "4.7.3"
},
"packageManager": "[email protected]",
"dependencies": {
"@rushstack/eslint-patch": "^1.3.3"
}
}