-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 956 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
{
"name": "nodejs-crypto-payments",
"version": "1.0.0",
"description": "we receive thousands of deposits from customers per day. This test is designed to test your ability to work with a transaction set that could get returned by a blockchain daemon like bitcoind.",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"start:dev": "nodemon index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasip-timurtas/nodejs-crypto-payments.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hasip-timurtas/nodejs-crypto-payments/issues"
},
"homepage": "https://github.com/hasip-timurtas/nodejs-crypto-payments#readme",
"dependencies": {
"dotenv": "^16.0.0",
"mongoose": "^6.2.0"
},
"devDependencies": {
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}