forked from connext/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.6 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
44
45
46
47
48
49
50
51
52
{
"name": "@connext/nxtp",
"version": "0.2.0-beta.14",
"private": true,
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@jtbennett/ts-project-scripts": "1.0.0-rc.4",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"eslint": "8.16.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"rimraf": "3.0.2"
},
"workspaces": [
"packages/utils",
"packages/deployments/contracts",
"packages/deployments/subgraph",
"packages/adapters/txservice",
"packages/adapters/cache",
"packages/adapters/subgraph",
"packages/adapters/web3signer",
"packages/agents/router",
"packages/agents/sequencer",
"packages/agents/cartographer/poller",
"packages/agents/sdk",
"packages/agents/relayer",
"packages/agents/lighthouse",
"packages/integration",
"packages/examples/sdk-server"
],
"scripts": {
"lint:all": "yarn workspaces foreach --exclude @connext/nxtp-subgraph --exclude @connext/nxtp-integration run lint --fix",
"test:all": "yarn workspaces foreach --exclude @connext/nxtp-relayer --exclude @connext/nxtp-subgraph --exclude @connext/nxtp-integration --exclude @connext/nxtp-sdk run test",
"clean:all": "yarn workspaces foreach --exclude @connext/nxtp-integration --exclude @connext/nxtp-subgraph run clean",
"build:all": "yarn workspaces foreach -pt --exclude @connext/nxtp-subgraph run build",
"verify:all": "yarn test:all && yarn clean:all && yarn build:all && yarn lint:all --max-warnings 0",
"version:all": "yarn workspaces foreach run version $0 && git commit -am \"v$0\" && git tag -a \"v$0\" -m \"v$0\"",
"purge:all": "yarn workspaces foreach run purge && rimraf './node_modules'",
"tsp:root": "tsp",
"tsp": "tsp",
"docker:router": "yarn workspace @connext/nxtp-router build && bash docker/build-router.sh",
"test:integration": "yarn workspace @connext/nxtp-integration docker:all:up && docker ps -a && bash setup-integration-test.sh && sleep 10 && echo 'router logs' && docker container logs --tail 250 router-test && echo 'integration test start' && yarn workspace @connext/nxtp-integration test && yarn docker:stop:all",
"docker:stop:all": "yarn workspace @connext/nxtp-integration docker:all:down",
"docker:local:services": "yarn workspace @connext/nxtp-integration docker:services:up && bash setup-integration-test.sh"
},
"resolutions": {
"@nomiclabs/hardhat-ethers": "https://registry.npmjs.org/hardhat-deploy-ethers/-/hardhat-deploy-ethers-0.3.0-beta.10.tgz"
},
"packageManager": "yarn@3.2.0",
"stableVersion": "0.1.25"
}