-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.35 KB
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
{
"name": "streamr-contracts",
"version": "0.0.0",
"description": "Network Contracts with The Graph",
"author": "Streamr Network AG <contact@streamr.network>",
"license": "STREAMR NETWORK OPEN SOURCE LICENSE",
"private": true,
"workspaces": [
"./packages/config",
"./packages/network-contracts",
"./packages/network-subgraphs",
"./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",
"e2etest": "npm run e2etest --workspace=network-contracts"
},
"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": "^5.8.3"
}
}