-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "test-app",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite --mode development --open",
"serve": "npm run start",
"types": "tsc",
"prepreview": "run-s build",
"preview": "vite preview --open",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"dependencies": {
"@cosmjs/crypto": "^0.34.0",
"@cosmjs/encoding": "^0.34.0",
"@cosmjs/stargate": "^0.34.0",
"@ethersproject/hash": "^5.8.0",
"@noble/secp256k1": "^2.3.0",
"cosmjs-types": "^0.10.1",
"ethers": "^6.14.1",
"secretjs": "^1.15.1"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "8.33.1",
"@typescript-eslint/parser": "8.33.1",
"eslint": "9.28.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"prettier": "3.5.3",
"sass": "1.89.1",
"terser": "^5.39.0",
"typescript": "5.8.3",
"vite": "6.3.5",
"vite-plugin-node-polyfills": "^0.24.0"
}
}