-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
63 lines (63 loc) · 1.88 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
58
59
60
61
62
63
{
"name": "keplr-contract-registry",
"version": "1.0.0",
"scripts": {
"clean": "rm -rf node_modules; rm -rf build",
"dev": "nodemon",
"crawl": "ts-node src/dev/crawling.ts",
"build": "tsc",
"build:clean": "yarn clean && yarn install --immutable && yarn build",
"bundle": "rm -rf bundle && esbuild ./src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --outdir=bundle/server && cp -r ./cosmos ./bundle",
"lint-test": "eslint \"src/**/*\" && prettier --check \"src/**/*\"",
"lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"",
"validate:token": "ts-node src/scripts/validate-token.ts",
"validate:image": "ts-node src/scripts/validate-image.ts",
"pre-commit": "lint-staged"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint",
"prettier --check"
],
"*.json": [
"yarn validate:token"
]
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@pulumi/aws": "^5.41.0",
"@pulumi/pulumi": "^3.73.0",
"@types/koa": "^2.13.6",
"@types/koa-router": "^7.4.4",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"esbuild": "^0.18.10",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.22",
"pre-commit": "^1.2.2",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]",
"dependencies": {
"@keplr-wallet/common": "^0.12.12",
"@keplr-wallet/cosmos": "^0.12.12",
"axios": "^1.4.0",
"curve25519-js": "^0.0.4",
"image-size": "^1.1.1",
"joi": "^17.9.2",
"koa": "^2.14.2",
"koa-router": "^12.0.0",
"miscreant": "^0.3.2",
"serverless-http": "^3.2.0"
}
}