-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
95 lines (95 loc) · 3.35 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "skip-go",
"version": "0.0.0",
"description": "Skip Go",
"private": true,
"workspaces": [
"packages/client",
"packages/widget",
"examples/*",
"vendor/"
],
"scripts": {
"dev": "yarn run dev:widget & yarn run dev:nextjs & yarn run dev:client",
"dev:https": "yarn run dev:widget & yarn run dev:nextjs-https & yarn run dev:client",
"dev:widget": "yarn workspace @skip-go/widget run dev",
"dev:nextjs": "yarn workspace nextjs run dev",
"dev:nextjs-https": "yarn workspace nextjs run dev:https",
"dev:client": "yarn workspace @skip-go/client run watch",
"build": "yarn run build:client && yarn run build:widget && yarn run build:nextjs",
"build:widget": "yarn workspace @skip-go/widget run build",
"build:nextjs": "yarn workspace nextjs build",
"build:client": "yarn workspace @skip-go/client build",
"codegen": "yarn workspace @skip-go/client codegen",
"test": "yarn workspace @skip-go/client run test",
"submodule": "yarn run submodule:init && yarn run submodule:update",
"submodule:init": "git submodule deinit -f --all",
"submodule:update": "git submodule update --init --recursive",
"release": "yarn run build && yarn workspace @skip-go/widget run pre && changeset publish",
"swagger": "npx open-swagger-ui --open docs/swagger.yml",
"postinstall": "yarn run submodule"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@cosmjs/amino": "0.32.4",
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@cosmjs/encoding": "0.32.4",
"@cosmjs/faucet": "0.32.3",
"@cosmjs/faucet-client": "0.32.3",
"@cosmjs/math": "0.32.4",
"@cosmjs/proto-signing": "0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "0.32.4",
"@cosmology/telescope": "1.8.3",
"@injectivelabs/core-proto-ts": "0.0.21",
"@injectivelabs/sdk-ts": "1.14.5",
"@keplr-wallet/unit": "^0.12.67",
"@protobufs/gogoproto": "0.0.10",
"@protobufs/google": "0.0.10",
"@rollup/plugin-node-resolve": "^13.1.3",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/web3.js": "^1.91.1",
"@tanstack/react-query": "^5.51.21",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"axios": "1.x",
"cosmjs-types": "0.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"globby": "^14.0.1",
"graz": "^0.1.25",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"keccak256": "1.x",
"minimatch": "^9.0.3",
"msw": "^1.2.3",
"p-map": "^7.0.2",
"postcss-prefixwrap": "^1.49.0",
"proxy-from-env": "^1.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.67.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.36.0",
"rollup-plugin-visualizer": "^5.5.4",
"ts-jest": "^29.1.2",
"tslib": "^1.9.3",
"tsup": "^8.0.1",
"tsx": "^4.12.0",
"typescript": "5.2.x",
"typescript-plugin-styled-components": "3.0.0",
"viem": "2.x",
"vitest": "^1.2.2",
"wagmi": "^2.5.7"
},
"packageManager": "yarn@3.2.0",
"dependencies": {
"@changesets/cli": "^2.24.4"
}
}