-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "matryxexplorer",
"version": "1.0.0",
"description": "A Node.js RESTful API for reading the Matryx Platform smart contracts",
"main": "server.js",
"scripts": {
"test": "echo \"Running mocha tests\" && nyc mocha --require test/helper.js --exit",
"dev": "echo \"Starting MatryxExplorer in development\" && knex migrate:latest --knexfile db/knexfile.js && nodemon server.js ",
"start": "echo \"Starting MatryxExplorer with pm2\" && knex migrate:latest --knexfile db/knexfile.js && pm2-runtime start server.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/matryx/MatryxExplorer.git"
},
"keywords": [
"node",
"restful",
"api",
"matryx",
"blockchain",
"ethereum"
],
"author": "Sam Hessenauer - Nanome Inc",
"contributors": [
"Alex McNerney - Nanome Inc"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/matryx/MatryxExplorer/issues"
},
"homepage": "https://github.com/matryx/MatryxExplorer#readme",
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"eth-sig-util": "^2.1.0",
"ethers": "^3.0.27",
"express": "^4.16.3",
"form-data": "^2.3.2",
"formidable": "^1.2.1",
"helmet": "^3.13.0",
"isomorphic-fetch": "^2.2.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"knex": "^0.15.2",
"morgan": "^1.9.0",
"pg": "^7.5.0",
"pm2": "^3.1.3",
"tmp": "^0.0.33"
},
"devDependencies": {
"big-number": "^1.0.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"fetch-mock": "^6.5.2",
"mocha": "^5.2.0",
"node-fetch": "^2.2.0",
"nodemon": "^1.18.7",
"nyc": "^13.0.1",
"sqlite3": "^4.0.2"
}
}