-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 920 Bytes
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": "smartchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"api-test": "node ./api-test.js",
"dev": "nodemon ./api",
"dev-peer": "nodemon ./api --peer",
"start": "node ./api",
"test": "jest --watchAll"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/15Dkatz/smartchain.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/15Dkatz/smartchain/issues"
},
"homepage": "https://github.com/15Dkatz/smartchain#readme",
"dependencies": {
"body-parser": "^1.19.0",
"elliptic": "^6.5.0",
"express": "^4.17.1",
"jest": "^24.8.0",
"js-sha3": "^0.8.0",
"lodash": "^4.17.15",
"pubnub": "^4.25.0",
"request": "^2.88.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}