-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.33 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
{
"name": "@valueflows/vf-graphql-monorepo",
"version": "0.0.1",
"private": true,
"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": "npx only-allow pnpm && npm run clean",
"build": "cd lib && npm run build",
"publish": "cd lib && npm publish --access public",
"start": "npm-run-all --parallel dev:schema dev:demoUI",
"test": "cd tests && 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; rm -Rf tests/node_modules; cd lib && npm run clean"
},
"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": "Apache-2.0",
"bugs": {
"url": "https://github.com/holo-rea/holo-rea-proto.git/issues"
},
"homepage": "https://github.com/holo-rea/holo-rea-proto#readme",
"dependencies": {
"graphql": "^15.0.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}