-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "temzone",
"description": "The Temtem Interactive Map API",
"version": "0.3.6",
"author": "Temtem Interactive Map",
"license": "MIT",
"type": "module",
"main": "src/index.ts",
"private": true,
"scripts": {
"scraper": "node scraper/index.js",
"database:migrate": "echo y | wrangler d1 migrations apply temzone --local --env dev",
"database:populate": "node scraper/database/index.js",
"dev": "wrangler dev --env dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint . --ext .js,.ts,.json,.yml",
"lint:fix": "eslint --fix . --ext .js,.ts,.json,.yml",
"firebase": "firebase emulators:start --project temzone --import=emulator-data --export-on-exit=emulator-data",
"test": "firebase emulators:exec --project temzone --import=emulator-data vitest",
"tail": "wrangler tail --env dev",
"deploy": "wrangler deploy"
},
"dependencies": {
"@lyrasearch/lyra": "0.4.12",
"hono": "3.3.3",
"jose": "4.14.4",
"kysely": "0.26.1",
"kysely-d1": "0.3.0",
"zod": "3.21.4"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20230724.0",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"better-sqlite3": "8.5.0",
"cheerio": "1.0.0-rc.12",
"command-line-args": "5.2.1",
"dotenv": "16.3.1",
"esbuild": "0.18.17",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-yml": "1.8.0",
"firebase-admin": "11.10.1",
"firebase-tools": "12.4.6",
"picocolors": "1.0.0",
"prettier": "3.0.0",
"prettier-eslint": "15.0.1",
"prettier-plugin-sql": "0.15.1",
"sharp": "0.32.4",
"uuid": "9.0.0",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.33.0",
"wrangler": "3.3.0"
}
}