-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.05 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
{
"name": "commissioner",
"version": "1.0.0",
"description": "commission, read, write, and vote for immutable, uncensorable writing",
"directories": {
"test": "test"
},
"scripts": {
"start": "yarn run start --cwd ./next",
"dev": "yarn run dev --cwd ./next",
"build": "yarn run build --cwd ./next",
"lint": "yarn run lint --cwd ./next",
"test": "yarn run jest --cwd ./next",
"truffle-test": "cd blockchain; truffle test;",
"console": "cd blockchain; truffle console",
"compile": "cd blockchain; truffle compile; yarn run replace-abi",
"install-subgraph": "yarn install --cwd ./subgraph",
"install-all": "yarn add -D concurrently; concurrently \"yarn install --cwd ./next\" \"yarn install --cwd ./blockchain\" \"yarn install --cwd ./subgraph\"",
"gbuild": "cd subgraph; graph build;",
"gcodegen": "cd subgraph; graph codegen;",
"gdeploy": "cd subgraph; yarn run deploy;"
},
"author": "Thomas Foydel",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"concurrently": "^7.6.0"
}
}