-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.65 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.65 KB
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
77
78
79
80
81
{
"name": "hyperweb",
"version": "0.0.5",
"author": "__USERFULLNAME__ <__USEREMAIL__>",
"description": "__MODULEDESC__",
"homepage": "https://github.com/__USERNAME__/__REPONAME__",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/__USERNAME__/__REPONAME__"
},
"bugs": {
"url": "https://github.com/__USERNAME__/__REPONAME__/issues"
},
"publishConfig": {
"access": "__ACCESS__",
"directory": "dist"
},
"scripts": {
"dev": "next dev ./ui",
"start": "next start ./ui",
"lint": "next lint ./ui",
"build:ui": "next build ./ui",
"clean": "rimraf dist/contracts/**",
"build": "ts-node scripts/build.ts",
"test": "jest --verbose --bail",
"test:debug": "jest --runInBand --verbose --bail",
"docker": "npm run docker:stop && npm run docker:run",
"docker:run": "docker run -d --name jsd-plus -p 26657:26657 -p 1317:1317 -p 8000:8000 -p 8001:8001 -p 8081:8081 ghcr.io/cosmology-tech/jsd-plus:0.1.1",
"docker:exec": "docker exec -it jsd-plus /bin/bash",
"docker:stop": "docker stop jsd-plus || true && docker rm jsd-plus || true",
"starship": "starship --config configs/local.yaml",
"starship:ci": "starship --config configs/ci.yaml"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9"
},
"dependencies": {
"@chain-registry/types": "^0.50.18",
"@interchain-kit/core": "0.0.1-beta.62",
"@interchain-kit/keplr-extension": "0.0.1-beta.62",
"@interchain-kit/leap-extension": "0.0.1-beta.62",
"@interchain-kit/react": "0.0.1-beta.62",
"@interchain-ui/react": "1.26.1",
"@interchain-ui/react-no-ssr": "^0.1.6",
"interchain-kit": "0.0.1-beta.62",
"next": "^13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.6.0"
},
"devDependencies": {
"@hyperweb/build": "^0.0.2",
"@interchainjs/cosmos": "^1.9.12",
"@starship-ci/cli": "^2.10.1",
"@types/jest": "^29.5.11",
"@types/node": "^22.7.4",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-next": "13.0.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"generate-lockfile": "0.0.12",
"hyperwebjs": "0.0.4",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"rimraf": "4.4.1",
"starshipjs": "^2.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"keywords": []
}