-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "@titan-suite/aion-to-graphql",
"version": "0.0.13",
"description": "Create a graphql server to AION smart contracts",
"main": "lib/index.js",
"scripts": {
"start": "nodemon server.js --exec babel-node",
"test": "mocha test/aion.test.js --require babel-polyfill --require babel-register",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/titan-suite/Aion-to-GraphQL"
},
"keywords": [
"Node.js",
"Javascript",
"GraphQL",
"Web3",
"Apollo",
"Aion"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/titan-suite/Aion-to-GraphQL/issues"
},
"homepage": "https://github.com/titan-suite/Aion-to-GraphQL#readme",
"dependencies": {
"aion-web3": "^0.0.3",
"apollo-server": "^2.0.5",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"graphql": "^0.13.0",
"mocha": "^5.2.0",
"solc": "^0.4.24"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"eslint": "^5.5.0",
"eslint-plugin-babel": "^5.1.0",
"nodemon": "^1.18.4"
}
}