forked from valueflows/vf-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "@valueflows/vf-graphql-monorepo",
"version": "0.0.1",
"private": true,
"workspaces": [
"mock-server",
"lib"
],
"description": "ValueFlows reference GraphQL spec, authored in GraphQL SDL; plus validator methods for apps wishing to adhere to the spec.",
"main": "/dev/null",
"scripts": {
"preinstall": "npm run clean",
"start": "npm-run-all --parallel dev:schema dev:demoUI",
"test": "cd lib && npm run test",
"dev:schema": "cd lib && npm run dev",
"dev:demoUI": "cd mock-server && npm start",
"clean": "rm -Rf node_modules; rm -Rf mock-server/node_modules; rm -Rf lib/node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holo-rea/holo-rea-proto.git"
},
"keywords": [
"REA",
"Holochain",
"Open Value Network",
"OpenValueNetwork",
"OVN",
"economic",
"cooperative",
"coordination"
],
"author": "HoloREA team & contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/holo-rea/holo-rea-proto.git/issues"
},
"homepage": "https://github.com/holo-rea/holo-rea-proto#readme",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}