-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "blocktron-node",
"version": "0.0.1",
"private": false,
"description": "blocktron node of the distributed blocktron system",
"main": "dist/blocktron_node.js",
"directories": {
"test": "test"
},
"scripts": {
"precommit": "pretty-quick --staged",
"test": "jest test --coverage --forceExit",
"build-dev": "webpack --config=scripts/webpack.config.js",
"build-prod": "webpack --config=scripts/webpack.config.js --env.production",
"build-docs": "jsdoc -c .jsdocrc -R README.md",
"build": "npm run build-dev && npm run build-prod",
"debug": "node --nolazy --inspect-brk=9229 ./bin/server.js",
"run-dev": "nodemon ./bin/server.js",
"node": "nodemon ./bin/server.js 3001 http://192.168.0.100:3001",
"node_1": "nodemon ./bin/server.js 3001 http://127.0.0.1:3001",
"node_2": "nodemon ./bin/server.js 3002 http://127.0.0.1:3002",
"node_3": "nodemon ./bin/server.js 3003 http://127.0.0.1:3003",
"node_4": "nodemon ./bin/server.js 3004 http://127.0.0.1:3004",
"node_5": "nodemon ./bin/server.js 3005 http://127.0.0.1:3005",
"start": "node ./dist/blocktron_node.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blocktron-Project/blocktron-node.git"
},
"keywords": [
"blocktron",
"blocktron-node",
"cryptocurrency",
"blockchain",
"javascript",
"node",
"framework"
],
"author": "Sandeep Vattapparambil",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blocktron-Project/blocktron-node/issues"
},
"homepage": "https://github.com/Blocktron-Project/blocktron-node#readme",
"dependencies": {
"blocktron-lib": "0.0.2",
"debug": "^3.1.0",
"express": "^4.16.3",
"http-errors": "^1.6.3",
"nodemon": "^1.18.3",
"path": "^0.12.7",
"pino": "^5.0.0",
"pino-pretty": "^2.0.0",
"request-promise": "^4.2.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.0.0",
"jest": "^23.2.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"prettier": "^1.13.6",
"prettier-webpack-plugin": "^1.0.0",
"supertest": "^3.1.0",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}