-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "terra",
"version": "1.0.0",
"main": "server.js",
"author": "vudat1710",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc -p .",
"lint:fix": "eslint . --ext .ts --fix",
"start": "nodemon ./dist/server.js",
"dev": "nodemon server.ts",
"contract": "ts-node-dev --respawn --transpile-only .\\scripts\\contract.ts",
"get-cw20-tokens": "ts-node-dev --respawn --transpile-only .\\data\\cw20\\get_cw20_tokens.ts"
},
"_moduleAliases": {
"@connection": "dist/connections",
"@serviceInterfaces": "dist/service_interfaces",
"@services": "dist/services",
"@utilInterfaces": "dist/util_interfaces",
"@utils": "dist/utils",
"@controllers": "dist/controllers",
"@routes": "dist/routes",
"@logger": "dist/logger.js",
"@constants": "dist/constants.js",
"@validations": "dist/validations",
"@models": "dist/api_models",
"@data": "dist/data",
"@errors": "dist/errors"
},
"dependencies": {
"@terra-money/terra.js": "^3.0.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"axios": "^0.24.0",
"bip39": "^3.0.4",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^4.2.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-validation": "^3.0.8",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"ts-node-dev": "^1.1.8",
"tsconfig": "^7.0.0",
"typescript": "^4.5.4",
"validator": "^13.1.17",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^17.0.7"
}
}