-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 829 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
{
"name": "block-chain",
"version": "1.0.0",
"description": "Blockchain Beigining",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"dev-test": "dev-test",
"start": "node ./app",
"dev": "nodemon ./app"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/the-ayush-singh/blockchain.git"
},
"author": "Ayush Singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-ayush-singh/blockchain/issues"
},
"homepage": "https://github.com/the-ayush-singh/blockchain#readme",
"dependencies": {
"body-parser": "^1.19.0",
"crypto-js": "^4.0.0",
"elliptic": "^6.5.4",
"express": "^4.17.1",
"uuid": "^8.3.2",
"ws": "^7.4.6"
},
"devDependencies": {
"jest": "^26.6.3"
}
}