-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "furnace",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen:wasm": "npx cosmwasm-ts-codegen generate --plugin client --schema ./schemas --out ./src/codegen --name Furnace --no-bundle",
"install": "graz generate -g",
"lint-staged": "npx lint-staged",
"knip": "npx knip --strict --dependencies",
"prepare": "husky"
},
"dependencies": {
"@chain-registry/client": "1.48.x",
"@cosmjs/cosmwasm-stargate": "0.32.x",
"@cosmjs/encoding": "0.32.x",
"@cosmjs/launchpad": "0.27.x",
"@cosmjs/proto-signing": "0.32.x",
"@cosmjs/stargate": "0.32.x",
"@cosmjs/tendermint-rpc": "0.32.x",
"@emotion/react": "11.11.x",
"@emotion/styled": "11.11.x",
"@mui/icons-material": "5.16.x",
"@mui/material": "5.16.x",
"@mui/x-charts": "7.11.x",
"@tanstack/react-query": "5.51.x",
"bech32": "2.0.x",
"chain-registry": "1.63.x",
"graz": "0.1.x",
"next": "14.2.x",
"pino-pretty": "11.2.x",
"react": "18.3.x",
"cosmjs-types": "0.9.x",
"react-dom": "18.3.x",
"recoil": "0.7.x"
},
"devDependencies": {
"@stylistic/eslint-plugin": "2.3.x",
"@types/node": "20.14.x",
"@types/react": "18.3.x",
"@types/react-dom": "18.3.x",
"@types/swagger-ui-react": "4.18.x",
"eslint": "8.56.x",
"eslint-config-next": "14.2.x",
"husky": "9.0.x",
"knip": "5.26.x",
"lint-staged": "15.2.x",
"typescript": "5.5.x",
"typescript-eslint": "7.16.x"
},
"lint-staged": {
"!(.next/*|*.json)*": "eslint --fix"
}
}