-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1022 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
36
37
38
39
{
"name": "tokenlandia-api",
"version": "1.0.0",
"scripts": {
"start": "nodemon --exec node src/index.js",
"start-prod": "NODE_ENV=prod node src/index.js",
"deploy-prod": "./deployment/deploy.sh",
"test": "NODE_ENV=test mocha ./test --recursive --exit --timeout 50000"
},
"author": "BlockRocket.tech",
"license": "MIT",
"dependencies": {
"@blockrocket/utils": "^1.0.6",
"@google-cloud/firestore": "^3.5.1",
"@hapi/joi": "^17.1.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"buffer": "^5.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ethers": "^4.0.44",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"ipfs-http-client": "^41.0.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nyc": "^15.0.0",
"should": "^13.2.3",
"web3": "^1.2.6"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"sinon": "^8.1.1"
}
}