-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 826 Bytes
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
{
"name": "ip-query-worker",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"db:migrate:local": "wrangler d1 migrations apply ip-query-db --local",
"db:migrate:remote": "wrangler d1 migrations apply ip-query-db --remote",
"db:migrate:city:local": "wrangler d1 migrations apply ip-query-city-db --local",
"db:migrate:city:remote": "wrangler d1 migrations apply ip-query-city-db --remote"
},
"dependencies": {
"countries-list": "^3.3.0",
"ipaddr.js": "^2.4.0",
"tz-lookup": "^6.1.25"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260503.1",
"typescript": "^6.0.3",
"vitest": "^4.1.5",
"wrangler": "^4.87.0"
}
}