-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
{
"name": "bicycle-chain",
"version": "1.0.0",
"description": "backend API for the most blockchain local nodes",
"main": "src/init.ts",
"scripts": {
"dist-qa": "webpack --progress --mode development --env.profile=qa",
"dist-prod": "webpack --progress --mode production --env.profile=prod",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/init.ts",
"instant": "ts-node src/init.ts",
"build": "tsc -p tsconfig.json",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "ssh://git-codecommit.ap-southeast-1.amazonaws.com/v1/repos/bicycle-chain"
},
"keywords": [
"blockchain",
"nodejs",
"node",
"typescript",
"bicycle-chain",
"chain",
"local-node"
],
"testPathIgnorePatterns": [
"/build/",
"/node_modules/",
"/src/environments/"
],
"author": "Viktor Levente Toth",
"license": "ISC",
"dependencies": {
"async-exit-hook": "^2.0.1",
"bignumber.js": "^8.1.1",
"bitcoin-core": "^3.0.0",
"eosjs": "^20.0.3",
"hapi": "^18.1.0",
"hapi-swagger": "^9.4.2",
"inversify": "^5.0.1",
"mongoose": "^5.9.5",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.0",
"pg": "^7.18.2",
"request-promise-native": "^1.0.8",
"ripple-lib": "^1.6.4",
"tronweb": "^2.10.1",
"web3": "1.0.0-beta.54",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.8.0"
},
"devDependencies": {
"@types/mongoose": "^5.7.7",
"@types/node": "^11.15.7",
"@types/web3": "^1.2.2",
"inert": "^5.1.3",
"nodemon": "^1.19.4",
"reflect-metadata": "^0.1.13",
"ts-loader": "^5.4.3",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"vision": "^5.4.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}