forked from ava-labs/avalanche-faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 912 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
{
"name": "faucet",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": ">=17"
},
"scripts": {
"postinstall": "npm install --prefix client",
"build": "npx tsc && npm run build --prefix client",
"start": "node build/server.js",
"dev": "npx --yes concurrently \"npx --yes nodemon server.ts\" \"npm run dev --prefix client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"avalanche": "^3.13.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-rate-limit": "^6.4.0",
"range_check": "^2.0.4",
"totp-generator": "^0.0.13",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"web3": "^1.7.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/totp-generator": "^0.0.4"
}
}