-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 733 Bytes
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": "syncmyfile",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build:win": "pkg --target win --no-fetch server.js",
"dev": "nodemon server.js"
},
"pkg": {
"assets": [
"public/**/*",
"sync/**"
],
"targets": [
"node14-win-x64"
],
"outputPath": "dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.3",
"chokidar": "^3.6.0",
"express": "^4.19.2",
"multer": "1.4.5-lts.1",
"nodemon": "^3.1.4",
"open": "8.4.2",
"portfinder": "^1.0.32",
"qrcode": "^1.5.3",
"socket.io": "^4.7.5",
"typescript": "^5.5.4"
},
"devDependencies": {
"tsup": "^8.2.4"
}
}