-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.98 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "props-eth-sync",
"version": "0.0.1",
"description": "Container generated for props-eth-sync",
"main": "app.js",
"scripts": {
"check-coverage": "nyc check-coverage --statement 100 --branches 100 --functions 100 --lines 100 --extension .ts",
"build": "npm run transpile && npm run doc",
"transpile": "tsc && npm run copyfiles",
"copyfiles": "copyfiles lib/**/*.lua lib/**/*.js lib/**/*.json dist -u 1",
"logs": "tail -f logs/app.log | ./node_modules/.bin/bunyanjs",
"dashboard": "npm run transpile && nodejs-dashboard node -- -r nodejs-dashboard dist/app.js",
"cover": "mkdir -p .nyc_output && nyc report --reporter=lcov",
"watch:test": "npm test -- -w",
"tdd": "multi='mocha-osx-reporter=- spec=-' npm test -- --reporter mocha-multi -w",
"doc": "apidoc -i lib/endpoints -o public/doc/",
"start": "npm run doc && babel-watch lib/app.js",
"test": "NODE_ENV=test mocha $NODE_DEBUG_OPTION $(find lib -name '*.test.ts') -r ts-node/register --exit --require babel-polyfill",
"debug": "npm run doc && ts-node $NODE_DEBUG_OPTION lib/app.ts",
"sync-latest": "node dist/app.js --sync-latest",
"sync-all": "node dist/app.js --sync-all",
"submit-rewards": "node dist/app.js --submit-rewards",
"setup-validator": "node dist/app.js --validator-setup",
"setup-application": "node dist/app.js --application-setup",
"generate-wallet": "node dist/app.js --create-wallet",
"fill": "ts-node scripts/default_requests",
"postinstall": "echo 'export default (() => ({}));' > lib/settings/settings.development.ts",
"migrate": "./node_modules/.bin/ sequelize db:migrate --env development --config lib/sequelize/config/config.js --migrations-path lib/sequelize/migrations/ --seeders-path lib/sequelize/seeders"
},
"dependencies": {
"@types/chai": "4.1.3",
"@types/chai-as-promised": "7.1.0",
"@types/node": "^10.12.0",
"apidoc": "^0.16.1",
"axios": "^0.19.2",
"bignumber.js": "^8.0.1",
"cbor": "^4.1.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.4.0",
"commander": "^2.20.0",
"copy-files": "^0.1.0",
"decimal.js": "^10.2.0",
"defender-relay-client": "^1.3.1",
"ethereum-address": "^0.0.4",
"ethereumjs-util": "^6.2.0",
"ethereumjs-wallet": "^0.6.3",
"ethers": "^5.0.31",
"google-closure-library": "^20180910.0.0",
"google-protobuf": "^3.6.1",
"joi": "^10.2.0",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"moment": "^2.22.1",
"moment-timezone": "^0.5.17",
"newrelic": "2.5.0",
"proper-lockfile": "^4.1.1",
"props-lib-env": "0.0.3",
"props-lib-logger": "1.0.10",
"propskit": "^4.0.6",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"request-promise-native": "^1.0.7",
"sawtooth-sdk": "^1.0.5",
"sequelize": "^4.4.2",
"sequelize-cli": "^4.0.0",
"sha256": "^0.2.0",
"truffle-privatekey-provider": "^1.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"uuid": "^3.1.0",
"web3": "^1.0.0-beta.35",
"wtfnode": "^0.7.0",
"bitski-node": "^0.7.3"
},
"devDependencies": {
"@types/joi": "^13.0.8",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.2.0",
"@types/moment-timezone": "^0.5.5",
"commitizen": "^2.8.6",
"copyfiles": "^2.0.0",
"cz-conventional-changelog": "^1.2.0",
"mocha": "^5.2.0",
"mocha-multi": "^1.0.1",
"mocha-osx-reporter": "^0.1.2",
"nodejs-dashboard": "latest",
"nyc": "^10.0.0",
"sinon": "^7.1.1",
"tslint": "^4.5.1",
"tslint-config-airbnb": "^1.1.1"
},
"apidoc": {
"title": "Documentation for micro-gameshow"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"author": "Jonathan Achai",
"license": "ISC"
}