-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 842 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 842 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
{
"name": "blockchain",
"version": "1.0.0",
"description": "blockchain node implementation",
"main": "server.js",
"scripts": {
"start": "node server/server.js",
"serve": "nodemon server/server.js",
"production": "node scripts/production-start.js",
"security-check": "node scripts/securityCheck.js",
"test": "node test_validation.js",
"run-tests": "node scripts/runTests.js",
"audit": "npm audit",
"clean-logs": "rm -rf server/logs/*"
},
"author": "sazid",
"license": "MIT",
"dependencies": {
"@noble/ed25519": "^2.3.0",
"axios": "^0.27.2",
"colors": "^1.4.0",
"dotenv": "^16.0.0",
"elliptic": "^6.5.4",
"express": "^4.17.3",
"express-async-handler": "^1.2.0",
"node-fetch": "2.0",
"ws": "^8.13.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}