-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1006 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
42
{
"name": "js-chain",
"version": "1.0.0",
"description": "Simple JavaScript Blockchain implementation",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpoliko/js-chain.git"
},
"keywords": [
"blockchain",
"javascript",
"cryptocurrency"
],
"author": "Giovanni Poliko",
"license": "ISC",
"bugs": {
"url": "https://github.com/gpoliko/js-chain/issues"
},
"homepage": "https://github.com/gpoliko/js-chain#readme",
"dependencies": {
"crypto-js": "^4.0.0",
"elliptic": "^6.5.3",
"express": "^4.17.1"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-eda": "^0.1.4",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"superagent": "^6.1.0",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
}
}