This repository has been archived by the owner on Feb 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.75 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"./packages/*",
"./example/*",
"./example/subgraph/src/*",
"graph-cli"
],
"nohoist": [
"**/graph-ts"
]
},
"scripts": {
"build": "yarn build:packages && yarn build:example",
"build:ci": "yarn build:packages:ci",
"build:packages": "lerna exec --scope @graphprotocol/mutations* -- yarn build",
"build:packages:ci": "lerna exec --scope @graphprotocol/mutations* -- yarn build:ci",
"build:example": "yarn build:example:mutations && yarn build:example:subgraph",
"build:example:subgraph": "lerna exec --scope example-subgraph -- yarn build",
"build:example:mutations": "lerna exec --scope example-mutations -- yarn build",
"start:subgraph": "lerna exec --scope example-subgraph -- yarn start",
"start:dapp": "lerna exec --scope example-dapp-react -- yarn start",
"stop:subgraph": "lerna exec --scope example-subgraph -- yarn stop",
"test": "lerna exec --scope @graphprotocol/mutations* -- yarn test",
"preinstall": "([ ! -d graph-cli ] && git clone --branch mutations-build https://github.com/dOrgTech/graph-cli) || true"
},
"devDependencies": {
"@types/graphql": "^14.2.2",
"@types/react": "^16.8.0",
"lerna": "^3.15.0",
"prettier": "^1.18.2",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@apollo/react-common": "^3.1.3",
"@apollo/react-hooks": "^3.1.3",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-utilities": "1.3.3",
"apollo-link": "^1.2.12",
"apollo-link-http": "^1.5.15",
"apollo-link-state": "^0.4.2",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}