-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 887 Bytes
/
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
{
"name": "blockchain",
"version": "1.0.0",
"description": "A javascript implementation of blockchain concepts",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"dev-test": "nodemon dev-test",
"start": "node ./app",
"dev": "nodemon ./app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuillaumeBAECHLER/Blockchain.git"
},
"jest": {
"testEnvironment": "node"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuillaumeBAECHLER/Blockchain/issues"
},
"homepage": "https://github.com/GuillaumeBAECHLER/Blockchain#readme",
"devDependencies": {
"jest": "^23.5.0",
"nodemon": "^1.18.4"
},
"dependencies": {
"body-parser": "^1.18.3",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1",
"express": "^4.16.3",
"uuid": "^3.3.2",
"ws": "^6.0.0"
}
}