-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
87 lines (87 loc) · 3.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "hREA",
"private": true,
"version": "0.0.1",
"description": "A suite of Holochain apps implementing a ValueFlows-compatible REA economic network",
"main": "/dev/null",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "scripts/postinstall.sh",
"shell": "nix develop",
"start": "pnpm run build; npm-run-all --parallel dev:graphql:adapter dev:graphql:client dev:graphql:explorer dht",
"build": "npm-run-all --parallel build:graphql build:holochain:dev",
"build:crates": "CARGO_TARGET_DIR=target cargo build --release --target wasm32-unknown-unknown",
"build:holochain:dev": "npm run build:crates && RUN_WASM_OPT=0 scripts/package-dnas.sh",
"build:holochain:release": "npm run build:crates && RUN_WASM_OPT=1 BUNDLE_ZOMES=1 scripts/package-dnas.sh",
"build:graphql": "npm-run-all build:graphql:adapter build:graphql:client",
"build:graphql:adapter": "cd modules/vf-graphql-holochain && pnpm run build",
"build:graphql:client": "cd modules/graphql-client && pnpm run build",
"build:apps": "pnpm run build:apps:explorer",
"build:apps:explorer": "pnpm run build:graphql:adapter && cd apps/hrea-graphql-explorer && pnpm run build",
"build:webhapp": "pnpm run build:apps:explorer && scripts/package-webhapp.sh",
"build:example:custom-resource-attributes": "cd example/custom-resource-attributes && ./build-deps.sh && hc package",
"build:example:knowledge-system-extensions": "cd example/knowledge-system-extensions && ./build-deps.sh && hc package",
"dht": "pnpm run dht:conductor",
"dht:conductor": "scripts/run-dev-conductor.sh",
"dev": "npm-run-all --parallel watch dev:graphql:adapter dev:graphql:client dev:graphql:explorer",
"dev:graphql:adapter": "cd modules/vf-graphql-holochain && pnpm run dev",
"dev:graphql:client": "cd modules/graphql-client && pnpm run dev",
"dev:graphql:explorer": "cd apps/hrea-graphql-explorer && npm start",
"watch": "npm-watch",
"test": "npm-run-all test:unit test:integration",
"test:unit": "scripts/run-unit-tests.sh",
"test:integration": "cd test && npm test",
"clean": "npm-run-all --parallel clean:modules clean:build",
"clean:modules": "scripts/clean-modules.sh",
"clean:build": "scripts/clean-build.sh"
},
"watch": {
"test:unit": {
"patterns": [
"lib"
],
"extensions": "rs"
},
"test:integration": {
"patterns": [
"test",
"bundles/dna",
"modules/vf-graphql-holochain/build",
"modules/graphql-client/build"
],
"extensions": "js,json,dna"
},
"dht": {
"patterns": [
"bundles/app"
],
"extensions": ".happ"
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/h-REA/hREA.git"
},
"keywords": [
"REA",
"ValueFlows",
"OpenValueNetwork",
"Open Value Network",
"OVN",
"Holochain",
"economic",
"cooperative",
"coordination"
],
"author": "hREA contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/h-REA/hREA/issues"
},
"homepage": "https://github.com/h-REA/hREA#readme",
"devDependencies": {
"hygen": "^5.0.3",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0"
}
}