-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3456",
"build": "next build",
"start": "next start -p 3456",
"lint": "next lint",
"prettier-all:check": "prettier --check \"**/*.{css,html,js,json,md,ts,tsx,yaml,yml}\" --ignore-path ./.prettierignore",
"prettier-all:write": "prettier --write \"**/*.{css,html,js,json,md,ts,tsx,yaml,yml}\" --ignore-path ./.prettierignore"
},
"dependencies": {
"@turnkey/http": "^2.7.1",
"@turnkey/webauthn-stamper": "^0.5.0",
"@turnkey/iframe-stamper": "^1.0.0",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"encoding": "^0.1.13",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"next": "13.4.9",
"postcss": "8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.1",
"@hookform/error-message": "^2.0.1",
"swr": "^2.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3"
}
}