-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "blockchain-in-node",
"version": "0.0.2",
"description": "This is an afternoon-project, a blockchain built in node, supporting PoW.",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=production node ./dist/server.js",
"test": "eslint .",
"dev": "babel-watch ./src/server.js 3000",
"node": "babel-watch ./src/server.js",
"build": "babel -d ./dist ./src -s",
"precommit": "npm run test",
"prepush": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amazingandyyy/blockchain-in-node.git"
},
"keywords": [
"blockchain",
"bitcoin",
"ethereum",
"nodejs"
],
"author": "Amazingandyyy <[email protected]> (Andy Chen)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^2.0.7",
"eslint": "^4.14.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-es5": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"js-sha256": "^0.9.0",
"node-fetch": "^2.1.1"
}
}