-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "ublog",
"type": "module",
"private": true,
"scripts": {
"dev": "rakkas",
"build": "rakkas build",
"start": "node dist/server",
"format": "prettier --write --ignore-unknown src",
"test": "npm run test:typecheck && npm run test:format && npm run test:lint && npm run test:unit",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:format": "prettier --check --ignore-unknown src",
"test:lint": "eslint . --ignore-pattern dist",
"test:unit": "vitest run",
"local": "miniflare --modules dist/server/cloudflare-workers-bundle.js",
"deploy": "wrangler publish"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.14.1",
"@miniflare/kv": "^2.6.0",
"@miniflare/storage-memory": "^2.6.0",
"@rakkasjs/eslint-config": "0.6.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@unocss/reset": "^0.45.13",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"miniflare": "^2.6.0",
"prettier": "^2.7.1",
"rakkasjs": "0.6.0",
"typescript": "^4.7.4",
"unocss": "^0.45.13",
"vite": "^3.0.4",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.20.3",
"wrangler": "^2.0.24"
},
"dependencies": {
"@hattip/adapter-cloudflare-workers": "0.0.17",
"@hattip/cookie": "^0.0.17",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}