forked from streamr-dev/network-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.91 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
{
"name": "streamr-contracts",
"version": "0.0.0",
"description": "Network Contracts with chainlink oracle and The Graph",
"author": "Streamr Network AG <[email protected]>",
"license": "STREAMR NETWORK OPEN SOURCE LICENSE",
"private": true,
"workspaces": [
"./packages/config",
"./packages/network-contracts",
"./packages/hub-contracts",
"./packages/network-subgraphs",
"./packages/docker-dev-chain-init",
"./packages/chat-contracts",
"./packages/ens-sync-script",
"./packages/dev-chain-fast"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present && eslint .",
"test": "npm run test --workspaces --if-present",
"integration-test": "npm run integration-test --workspaces --if-present",
"test:subgraph": "graph test -d",
"graph1_build": "npm run deployLocalWithExport -w=network-contracts",
"graph2_copyInfo": "./scripts/copyAbis.sh && ./scripts/generateYaml.sh",
"graph3_build": "npm run doAll --workspace=network-subgraphs",
"graph": "npm run graph1_build && npm run graph2_copyInfo && npm run graph3_build",
"e2etest": "npm run e2etest --workspace=network-contracts",
"migration-build": "npm run build -w=brubeck-migration-script",
"migration-run": "npm run migration -w=brubeck-migration-script"
},
"devDependencies": {
"@chainsafe/ssz": "^0.10.2",
"@types/chai": "4.3.0",
"@types/mocha": "9.1.1",
"@types/node": "16.11.25",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "4.3.6",
"eslint": "8.27.0",
"eslint-config-streamr-ts": "4.1.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-promise": "6.1.1",
"gluegun": "5.1.2",
"keyv": "4.5.2",
"mocha": "9.2.0",
"ts-node": "10.4.0",
"typescript": "4.2.4"
}
}