-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "pfpk",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "wrangler dev --port 58229",
"deploy": "wrangler deploy --minify",
"seed": "wrangler d1 execute DB --file=./schema.sql",
"seed:local": "wrangler d1 execute DB --file=./schema.sql --local",
"lint": "eslint .",
"format": "eslint . --fix"
},
"devDependencies": {
"@chain-registry/types": "^0.50.1",
"@cloudflare/workers-types": "^4.20240222.0",
"@types/crypto-js": "^4.1.1",
"@types/secp256k1": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"wrangler": "^3.67.1"
},
"dependencies": {
"@apollo/client": "^3.8.7",
"@cosmjs/amino": "^0.29.0",
"@cosmjs/cosmwasm-stargate": "^0.29.0",
"@cosmjs/crypto": "^0.29.0",
"@cosmjs/encoding": "^0.29.0",
"chain-registry": "^1.69.4",
"crypto-js": "^4.1.1",
"graphql": "^16.8.1",
"itty-cors": "^0.2.2",
"itty-router": "^2.6.6",
"react": "^18.2.0",
"secp256k1": "^5.0.0"
}
}