forked from NoahSaso/cloudflare-worker-cosmos-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "retroactive-compensation-cf-worker",
"version": "0.0.1",
"devDependencies": {
"@cloudflare/workers-types": "^4.20240725.0",
"@types/crypto-js": "^4.1.1",
"@types/lodash.groupby": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"better-sqlite3": "^7.6.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"wrangler": "^3.67.1"
},
"private": true,
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler deploy --minify",
"dev": "wrangler dev --local --persist",
"seed": "wrangler d1 execute DB --file=./schema.sql",
"seed:local": "wrangler d1 execute DB --file=./schema.sql --local"
},
"dependencies": {
"@cosmjs/amino": "^0.29.4",
"@cosmjs/cosmwasm-stargate": "^0.29.4",
"@cosmjs/crypto": "^0.29.4",
"@cosmjs/encoding": "^0.29.4",
"chain-registry": "^1.27.0",
"crypto-js": "^4.1.1",
"itty-cors": "^0.3.4",
"itty-router": "^2.6.6",
"lodash.groupby": "^4.6.0"
}
}