-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "aptossnap",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build:snap": "yarn workspace @keystonehq/aptossnap build",
"build:adapter": "yarn workspace @keystonehq/aptossnap-adapter build",
"start:snap": "yarn workspace @keystonehq/aptossnap watch",
"start:demo": "yarn workspace demo 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": "concurrently --raw --kill-others \"yarn run start:snap\" \"yarn run start:demo\""
},
"devDependencies": {
"@types/eslint": "^7",
"@types/mocha": "^9.1.1",
"@types/node": "^12.12.35",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"concurrently": "^7.1.0",
"lerna": "^5.4.3",
"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"
},
"packageManager": "yarn@3.2.3"
}