-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 962 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 962 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": "metaversevm-explorer-api",
"version": "0.0.1",
"description": "Simple api for a simple metaverse vm explorer",
"main": "lib/index.js",
"dependencies": {
"apicache": "^1.6.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.19",
"morgan": "^1.10.0",
"redis": "^3.0.2",
"web3": "^1.3.4"
},
"devDependencies": {
"@types/apicache": "^1.2.2",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.33",
"@types/redis": "^2.8.28",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"scripts": {
"serve": "ts-node src/server.ts",
"build": "tsc",
"start": "node lib/server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"metaverse",
"blockchain",
"evm",
"api"
],
"author": "Metaverse Foundation",
"license": "MIT"
}