forked from chainapsis/keplr-chain-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.55 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "chainapsis-suggest-chain",
"version": "0.0.1",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"validate": "ts-node src/index.ts",
"cron": "ts-node src/schedule.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:test": "eslint \"src/**/*\" && prettier --check \"src/**/*\"",
"lint:fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:server": "tsc -p ./server/tsconfig.json && mkdir -p ./server/build/static && cp -r ./cosmos ./server/build/static",
"bundle:server": "rm -rf ./server/bundle && esbuild ./server/src/index.ts --bundle --minify --sourcemap --platform=node --target=node18 --outdir=./server/bundle && mkdir -p ./server/bundle/static && cp -r ./cosmos ./server/bundle/static",
"bundle:zip": "cd ./server && zip -r ../bundle.zip ./bundle"
},
"pre-commit": [
"lint:test"
],
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@keplr-wallet/chain-validator": "v0.12.105",
"@keplr-wallet/common": "v0.12.105",
"@keplr-wallet/cosmos": "v0.12.105",
"@keplr-wallet/types": "v0.12.105",
"axios": "^0.27.2",
"cors": "^2.8.5",
"esbuild": "^0.19.5",
"image-size": "^1.0.2",
"koa": "^2.14.2",
"koa-static": "^5.0.0",
"next": "13.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"serverless-http": "^3.2.0",
"styled-components": "^5.3.6",
"ws": "^8.11.0"
},
"devDependencies": {
"@pulumi/aws": "^6.8.0",
"@pulumi/pulumi": "^3.93.0",
"@types/cors": "^2.8.13",
"@types/eslint": "^8.4.10",
"@types/koa": "^2.13.11",
"@types/koa-static": "^4.0.4",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/styled-components": "^5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-next": "13.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^45.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]"
}