-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.04 KB
/
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": "tezos-faucet-backend",
"version": "2.0.0",
"description": "Tezos Faucet Backend",
"main": "dist/src/api.js",
"scripts": {
"build": "npx tsc",
"dev": "nodemon -e ts --exec \"npx tsc && npm run start || exit 1\"",
"start": "node --enable-source-maps dist/src/api.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oxheadalpha/tezos-faucet-backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/oxheadalpha/tezos-faucet-backend/issues"
},
"homepage": "https://github.com/oxheadalpha/tezos-faucet-backend#readme",
"dependencies": {
"@taquito/signer": "^17.1.1",
"@taquito/taquito": "^17.1.1",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"redis": "^4.6.7",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.4.6",
"nodemon": "^3.0.1",
"typescript": "^5.1.6"
}
}