-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 972 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
{
"name": "cosm-api",
"version": "0.0.1",
"description": "Cosmwasm REST API to query and execute cosmwasm smart contracts",
"main": "source/server.ts",
"scripts": {
"dev": "nodemon source/server.ts",
"build": "rm -rf build/ && prettier --write source/ && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gachouchani1999/cosm-api.git"
},
"author": "Georges Chouchani",
"license": "ISC",
"bugs": {
"url": "https://github.com/gachouchani1999/cosm-api/issues"
},
"homepage": "https://github.com/gachouchani1999/cosm-api#readme",
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.28.10",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"axios": "^0.27.2",
"express": "^4.18.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.18",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}