-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 KB
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
{
"name": "s_blockchain",
"version": "1.0.0",
"description": "blockchain project",
"main": "index.js",
"scripts": {
"start": "nodemon --watch dev -e js dev/node.js",
"test": "node dev/__tests__/blockchain.test.js",
"debug": "nodemon --watch dev -e js dev/node.js 3001 http://localhost:3000",
"node_1": "nodemon --watch dev -e js dev/node.js 3001 http://localhost:3001",
"node_2": "nodemon --watch dev -e js dev/node.js 3002 http://localhost:3002",
"node_3": "nodemon --watch dev -e js dev/node.js 3003 http://localhost:3003"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nonameb3/s_blockchain.git"
},
"author": "waraphon",
"license": "MIT",
"bugs": {
"url": "https://github.com/nonameb3/s_blockchain/issues"
},
"homepage": "https://github.com/nonameb3/s_blockchain#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"nodemon": "^1.18.9",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sha256": "^0.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}