-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "fakedrop",
"version": "1.1.0",
"description": "A \"drop-in\" alternative to AirDrop.",
"main": "dist/index.js",
"bin": "dist/index.js",
"license": "MIT",
"keywords": [
"npm",
"tool",
"airdrop",
"file sharing",
"web server"
],
"scripts": {
"build": "tsc --project ./",
"start:dev": "nodemon src/index.ts",
"start:prod": "node dist/index.js"
},
"repository": "https://github.com/itspeetah/fakedrop",
"homepage": "https://github.com/itspeetah/fakedrop#readme",
"dependencies": {
"downloads-folder": "^3.0.3",
"express": "^4.18.2",
"find-free-ports": "^3.1.1",
"get-port": "^7.0.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/multer": "^1.4.10",
"@types/node": "^20.9.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}