-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "@oasisprotocol/rose-app-move",
"private": true,
"version": "1.0.0",
"license": "See License in ../LICENSE",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"checkTs": "tsc --noEmit",
"dev": "vite",
"build": "tsc && vite build",
"generate:oasisscanv2": "swagger-typescript-api -p https://api.oasisscan.com/v2/swagger/api.json -o ./src/generated -n OasisScanV2Api.ts",
"preview": "vite preview",
"test": "vitest"
},
"engines": {
"node": ">=20",
"pnpm": ">=10.0.0"
},
"dependencies": {
"@material-design-icons/svg": "^0.14.15",
"@oasisprotocol/client": "^1.3.0",
"@oasisprotocol/client-rt": "^1.3.0",
"@oasisprotocol/oasisscan-api": "workspace:*",
"@oasisprotocol/rose-app-ui": "workspace:*",
"@rainbow-me/rainbowkit": "^2.1.2",
"@tanstack/react-query": "5.45.1",
"bignumber.js": "^9.1.2",
"fathom-client": "^3.7.2",
"react": "^18.2.0",
"react-router-dom": "^6.22.2",
"tweetnacl": "^1.0.3",
"viem": "^2.23.1",
"wagmi": "^2.14.11"
},
"devDependencies": {
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"swagger-typescript-api": "^13.0.23",
"typescript": "^5.9.3",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.1.0",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^2.1.9"
},
"exports": {
".": {
"import": "./src/main.tsx"
}
}
}