forked from Xiphiar/teddy-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 858 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": "teddy-api",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config index.js",
"start:testnet": "node -r dotenv/config index.js dotenv_config_path=.env.testnet",
"start:mainnet": "node -r dotenv/config index.js dotenv_config_path=.env.mainnet",
"build": "npm run build:js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@tendermint/sig": "^0.6.0",
"axios": "^0.26.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.4.1",
"http-proxy-middleware": "^2.0.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"path": "^0.12.7",
"request": "^2.88.2",
"secretjs": "^1.2.0-beta.66",
"wildcard-match": "^5.1.2"
},
"devDependencies": {
"dotenv": "^10.0.0"
}
}