-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 901 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
35
36
37
38
{
"name": "example-nextjs-email-password-webauthn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier -w ."
},
"dependencies": {
"@node-rs/argon2": "^2.0.0",
"@oslojs/binary": "^1.0.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@oslojs/otp": "^1.0.0",
"@oslojs/webauthn": "^1.0.0",
"@pilcrowjs/db-query": "^0.0.2",
"@pilcrowjs/object-parser": "^0.0.4",
"better-sqlite3": "^11.3.0",
"next": "14.2.14",
"react": "^18",
"react-dom": "^18",
"uqr": "^0.1.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"typescript": "^5"
}
}