-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.25 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
49
50
51
52
53
54
55
56
57
{
"name": "@robmcelhinney/qr-file-share",
"version": "0.1.8",
"description": "Node.js http server allowing for file transfers over local area network made easier with QR code output on start.",
"main": "server.js",
"bin": "bin.js",
"repository": "github:robmcelhinney/qr-file-share",
"dependencies": {
"@material-ui/core": "^4.9.12",
"archiver": "^4.0.1",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"meow": "^6.1.1",
"qrcode-terminal": "^0.12.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified.\"",
"start-server": "node bin.js",
"start": "npm run build-client && node bin",
"build-client": "cd client && npm run build && cd .."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"client/build",
"bin.js",
"server.js",
"constants.js"
],
"pkg": {
"assets": [
"client/build/**"
]
},
"keywords": [
"qr",
"share",
"WiFi",
"terminal",
"file",
"share"
]
}