-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 934 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
38
39
40
41
{
"name": "dummy-chain",
"version": "1.0.0",
"description": "udem course build a blockchain and a cryptocurrency from scratch",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"dev-test": "nodemon dev-test.js",
"start": "node ./app",
"dev": "nodemon ./app"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/efcjunior/dummy-chain.git"
},
"keywords": [
"udemy",
"blockchain",
"cryptocurrency"
],
"author": "efcjunior",
"license": "MIT",
"bugs": {
"url": "https://github.com/efcjunior/dummy-chain/issues"
},
"homepage": "https://github.com/efcjunior/dummy-chain#readme",
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.12"
},
"dependencies": {
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"express": "^4.17.1",
"uuid": "^8.3.2",
"ws": "^8.2.2"
}
}