-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "playground",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:snapshot": "nodemon --config nodemon.json src/snapshot_evmos.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"build": "tsc",
"start": "node dist/src/index.js"
},
"license": "MIT",
"dependencies": {
"@cosmjs/encoding": "^0.28.4",
"@cosmjs/math": "^0.28.4",
"@cosmjs/stargate": "^0.28.4",
"@cosmjs/tendermint-rpc": "^0.28.4",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"cronitor": "^2.3.2",
"dotenv": "^16.0.1",
"emoji-hash-gen": "^1.0.2",
"express": "^4.18.1",
"hash-emoji": "^0.0.4",
"lodash": "^4.17.21",
"mongoose": "^6.3.6",
"node-cron": "^3.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.36",
"@types/node-cron": "^3.0.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"cosmjs-types": "^0.5.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}