-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
42
43
44
45
46
{
"name": "node",
"version": "1.0.0",
"description": "This project contains the code for the miner for the blockchain.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "npm run build && node dist/node.js",
"postinstall": "npm run build"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/APDF-blockchain/node.git"
},
"author": "Denis Putnam",
"license": "ISC",
"bugs": {
"url": "https://github.com/APDF-blockchain/node/issues"
},
"homepage": "https://github.com/APDF-blockchain/node#readme",
"dependencies": {
"@types/cors": "^2.8.6",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"crypto-js": "^4.0.0",
"elliptic": "^6.5.2",
"express": "^4.17.1",
"js-sha256": "^0.9.0",
"lodash": "^4.17.19",
"ts-node": "^8.10.1",
"typedoc": "^0.17.6",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/ws": "^7.2.4",
"typescript": "^3.9.2"
}
}