-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 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
35
{
"name": "root",
"private": true,
"author": "Enjin <contact@enjin.io>",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build:snap": "yarn workspace @enjin-io/snap build",
"build:adapter": "yarn workspace @enjin-io/metamask-enjin-adapter build",
"start:snap": "yarn workspace @enjin-io/snap serve",
"start:example": "yarn workspace example start",
"predemo": "yarn run build:snap && yarn run build:adapter",
"build": "yarn workspaces foreach -Avpt run build",
"test": "yarn workspaces foreach -Avpt run test",
"lint": "yarn workspaces foreach -Avpt run lint",
"lint:style:fix": "yarn workspaces foreach -Avp 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.45",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"concurrently": "8.2.2",
"eslint": "8.47.0",
"prettier": "3.0.2",
"typescript": "4.7.3"
},
"packageManager": "yarn@4.5.3",
"dependencies": {
"@rushstack/eslint-patch": "1.3.3"
}
}