-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 991 Bytes
/
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
{
"name": "ethereum-graphql-demo",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "parcel src/index.html",
"build:contracts": "npx solcjs --bin --abi -o contracts/ contracts/*.sol",
"init": "babel-node scripts/init.js",
"testnet": "ganache-cli"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link-core": "^0.5.4",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"react": "^16.8.3",
"react-apollo": "^2.5.2",
"react-dom": "^16.8.3",
"web3": "^1.0.0-beta.48"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-relay": "^3.0.0",
"ganache-cli": "^6.4.0",
"parcel-bundler": "^1.11.0",
"solc": "^0.5.4"
}
}