-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 722 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 722 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
{
"name": "cosmos-faucet",
"version": "1.0.0",
"description": "A REST API for GETting tokens",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"prod": "ts-node --transpile-only src/index.ts"
},
"author": "Reece Williams (@Reecepbcups_)",
"license": "ISC",
"dependencies": {
"@cosmjs/stargate": "^0.31.0",
"axios": "0.27.2",
"cors": "^2.8.5",
"cosmwasm": "1.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/expect": "^24.3.0",
"@types/node": "^16.11.1",
"ts-node": "^10.3.0",
"tslib": "^2.3.1",
"typescript": "^4.8.2"
}
}