-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 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
39
40
41
42
{
"name": "next-dev-https",
"version": "0.13.3",
"description": "Run Next dev server with QR and self signed https for better mobile development",
"repository": "https://github.com/TobiasMelen/next-dev-https",
"keywords": [
"next",
"next.js",
"dev-server",
"script",
"https",
"qr"
],
"author": "Tobias Melén",
"license": "MIT",
"bin": "./bin.js",
"files": [
"bin.js",
"src/server.js",
"src/utils.js"
],
"scripts": {
"test": "node --test"
},
"peerDependencies": {
"next": ">=13.3.1",
"react": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^20.1.2",
"@types/qrcode-terminal": "^0.12.0",
"@types/selfsigned": "^2.0.1",
"next": "^13.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"arg": "^5.0.2",
"qrcode-terminal": "^0.12.0",
"selfsigned": "^2.1.1"
}
}