-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "odd-passkeys-demo",
"private": true,
"version": "0.0.0",
"license": "apache-2.0",
"type": "module",
"scripts": {
"dev": "vite --force",
"build": "vite build",
"preview": "vite preview",
"lint": "tsc && eslint '**/*.{js,jsx,ts}' && prettier --check '**/*.{js,jsx,ts,yml,json}' --ignore-path ../../.gitignore"
},
"dependencies": {
"@oddjs/odd": "^0.37.1",
"@oddjs/passkeys": "workspace:^",
"@oddjs/preact": "workspace:^",
"@preact/signals": "^1.1.3",
"idb-keyval": "^6.2.1",
"iso-base": "^0.1.5",
"iso-passkeys": "^0.1.5",
"preact": "^10.14.1",
"preact-router": "^4.1.1",
"react-hook-form": "^7.43.9",
"vite-plugin-pwa": "^0.14.7",
"water.css": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@preact/preset-vite": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-plugin-svgr": "^3.2.0",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-window": "^6.5.4"
},
"eslintConfig": {
"extends": [
"../../node_modules/hd-scripts/eslint/preact.js"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"ignorePatterns": [
"dist"
]
}
}