-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "memory-note",
"version": "1.0.0",
"description": "Fast memory-note on cloudflare worker",
"main": "./src/index.tsx",
"repository": "azu/memory-note",
"keywords": [
"note",
"todo",
"reminder",
"cloudflare-workers",
"API"
],
"scripts": {
"dev": "wrangler dev ./src/index.tsx",
"type-check": "tsc",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "npm run type-check",
"prepare": "git config --local core.hooksPath .githooks",
"deploy": "wrangler deploy ./src/index.tsx"
},
"author": "author",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@types/react": "^18.2.11",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6",
"wrangler": "^3.0.1"
},
"dependencies": {
"@cfworker/uuid": "^1.8.3",
"@notionhq/client": "^2.2.5",
"@octokit/core": "^3.5.1",
"hono": "^3.2.3"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}