This repository was archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.36 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "launchpad-api",
"private": true,
"version": "0.1.0",
"description": "A basic starter Node application",
"main": "run.js",
"engines": {
"node": ">=9.0.0"
},
"scripts": {
"start": "nodemon run.js",
"start:prod": "npm run run:prod",
"run:prod": "node run.js",
"test": "jest -c ./test/config/default.js",
"test:integration": "CONTRACT_ADDRESSES=$(cat ../contracts/build/contractAddresses.json) jest -c ./test/config/integration.js --runInBand",
"test:watch": "jest --watch",
"test:ci": "CONTRACT_ADDRESSES=$(cat ../contracts/build/contractAddresses.json) jest --ci --forceExit",
"test:integration:ci": "CONTRACT_ADDRESSES=$(cat ../contracts/build/contractAddresses.json) jest -c ./test/config/integration.js --runInBand --ci --forceExit",
"lint": "eslint . --ignore-path .gitignore",
"parity": "docker run -p 8545:8545 appliedblockchain/parity-solo",
"contract-compile": "npm run --prefix ../contracts compile",
"contract-deploy": "npm run --prefix ../contracts deploy"
},
"eslintConfig": {
"extends": "@appliedblockchain/eslint-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appliedblockchain/base-node-app.git"
},
"keywords": [
"node"
],
"author": "Applied Blockchain",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/appliedblockchain/base-node-app/issues"
},
"homepage": "https://github.com/appliedblockchain/base-node-app#readme",
"jest": {
"setupFilesAfterEnv": [
"./test/jest-config.js"
]
},
"devDependencies": {
"@appliedblockchain/eslint-config": "^2.2.0",
"eslint": "^4.19.1",
"jest": "^24.5.0",
"nodemon": "^1.18.6",
"supertest": "^3.1.0"
},
"dependencies": {
"@appliedblockchain/koa-docs": "^2.1.0",
"@koa/cors": "^2.2.1",
"@sentry/node": "^5.10.2",
"abi-decoder": "^1.2.0",
"bytes": "^3.1.0",
"chalk": "^2.4.2",
"config": "^1.30.0",
"handlebars": "^4.5.3",
"humanize-number": "0.0.2",
"koa": "^2.5.1",
"koa-compress": "^3.0.0",
"koa-joi-router": "^5.1.0",
"koa-respond": "^1.0.1",
"lodash": "^4.17.11",
"mithril": "^2.0.4",
"passthrough-counter": "^1.0.0",
"prom-client": "^11.2.1",
"prometheus-api-metrics": "^2.1.8",
"response-time": "^2.3.2",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.36",
"winston": "^3.2.1"
}
}