-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 836 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
{
"name": "algorand-deposit-example",
"version": "1.0.0",
"description": "Example of managing deposit accounts for Algorand",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [
"algorand",
"deposit",
"wallet",
"crypto",
"cryptocurrency"
],
"author": "Alex Bakoushin <alex@bakoush.in>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bakoushin/algorand-deposit-example.git"
},
"bugs": {
"url": "https://github.com/bakoushin/algorand-deposit-example/issues"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"dependencies": {
"@fastify/static": "^8.0.2",
"algosdk": "^3.0.0",
"dotenv": "^16.0.3",
"fastify": "^5.0.0"
},
"engines": {
"node": ">= 12.0.0"
}
}