forked from chainapsis/keplr-chain-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.85 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
{
"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"
},
"pre-commit": [
"lint:test"
],
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@keplr-wallet/chain-validator": "0.12.34",
"@keplr-wallet/common": "0.12.34",
"@keplr-wallet/cosmos": "0.12.34",
"@keplr-wallet/types": "0.12.34",
"axios": "^0.27.2",
"cors": "^2.8.5",
"image-size": "^1.0.2",
"next": "13.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.6",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/eslint": "^8.4.10",
"@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]"
}