-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "next-auth-capacitor",
"version": "1.0.0",
"description": "Example project how to run Next and Next Auth as native app using Capacitor",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"static": "next build && next export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/choutkamartin/next-auth-capacitor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/choutkamartin/next-auth-capacitor/issues"
},
"homepage": "https://github.com/choutkamartin/next-auth-capacitor#readme",
"dependencies": {
"@awesome-cordova-plugins/in-app-browser": "^6.3.0",
"@capacitor/android": "^4.6.2",
"@capacitor/core": "^4.6.2",
"@capacitor/ios": "^4.6.2",
"@capacitor/network": "^4.1.0",
"cordova-plugin-inappbrowser": "^5.0.0",
"next": "^13.1.6",
"next-auth": "^4.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@capacitor/cli": "^4.6.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"typescript": "^4.9.4"
}
}