-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1006 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1006 Bytes
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
{
"name": "metaverse-vm-graphql-server",
"version": "0.0.1",
"description": "Metavese Blockchain GraphQL Endpoint",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"serve": "nodemon -e ts -w ./src -x npm run serve:start",
"serve:start": "ts-node src/index.ts",
"start": "node lib/index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Metaverse",
"Blockchain",
"GraphQL"
],
"author": "Metaverse Foundation",
"license": "ISC",
"dependencies": {
"apollo-log": "^1.0.1",
"apollo-server": "^2.24.1",
"dotenv": "^10.0.0",
"ethers": "^5.3.0",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"mongoose": "^5.12.11",
"node-cache": "^5.1.2",
"superagent": "^6.1.0",
"web3": "^1.3.6"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"@types/node": "^15.6.1",
"@types/superagent": "^4.1.11",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}