forked from reecepbcups/cosmos-faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 918 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 918 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
31
32
33
34
35
36
37
38
39
{
"name": "ojo-faucet",
"version": "1.0.0",
"description": "A REST API for GETting tokens",
"main": "src/index.ts",
"scripts": {
"start": "nodemon src/index.ts",
"build": "rimraf dist && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist"
},
"author": "Adam Wozniak (@adamewozniak)",
"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",
"nodemon": "^3.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/node": "^16.11.1",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.5",
"ts-node": "^10.3.0",
"tslib": "^2.3.1",
"typescript": "^4.8.2"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
]
}