-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 966 Bytes
/
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
{
"name": "qiita-feed",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "run-s build:*",
"build:api": "aspida",
"build:esbuild": "esbuild --bundle --sourcemap --minify --outdir=dist ./src/index.ts",
"dev": "miniflare --live-reload --debug",
"deploy": "wrangler publish",
"lint": "eslint --max-warnings=0 src",
"lint:fix": "eslint --fix src",
"format": "prettier --check src",
"format:fix": "prettier --write src"
},
"license": "MIT",
"dependencies": {
"@aspida/fetch": "^1.9.1",
"hono": "^0.5.10"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"aspida": "^1.9.1",
"esbuild": "^0.14.23",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"miniflare": "^2.3.0",
"notios": "^0.0.6",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
}
}