-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.36 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": "passkeys-example",
"version": "0.0.1",
"description": "Passkeys examples",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"prebuild": "rm -rf build",
"build:client": "tsc -noEmit && esbuild ./src/client/index.ts --bundle --minify --sourcemap --format=esm --outdir=build && npm run build:client:css --minify",
"build:client:css": "npx tailwindcss -i ./src/client/assets/tailwind.css -o ./src/client/assets/app.css",
"build": "npm run build:client",
"postbuild": "./scripts/make-assets.sh",
"watch": "tsc --watch",
"start": "wrangler dev",
"publish": "wrangler publish",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"dev:client": "./scripts/dev-client.sh",
"test": "jest"
},
"author": "Neal Fennimore",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@tailwindcss/forms": "^0.5.3",
"@types/cookie": "^0.5.1",
"@types/jest": "^29.5.3",
"esbuild": "^0.17.4",
"gh-pages": "^6.1.1",
"jest": "^29.6.2",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"wrangler": "^3.1.1"
},
"dependencies": {
"@cfworker/base64url": "^1.12.5",
"@peculiar/x509": "^1.9.3",
"cbor-x": "^1.5.0",
"cookie": "^0.5.0",
"itty-router": "^3.0.11"
}
}