-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 739 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 739 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
{
"name": "one-time-address",
"version": "0.1.1",
"main": "index.js",
"scripts": {
"dev": "nodemon --ext js,hbs --exec \"node -r dotenv/config index.js\"",
"start": "node -r dotenv/config index.js",
"check": "node check.js",
"stats": "node stats.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"private": true,
"repository": "https://github.com/alexk111/One-Time-Address.git",
"author": "alexk111 <alexk111@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"bitcoinjs-lib": "^5.2.0",
"bs58check": "^2.1.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"hbs": "^4.1.1",
"request-ip": "^2.1.3"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}