-
Notifications
You must be signed in to change notification settings - Fork 217
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "psitransfer",
"version": "0.0.0",
"description": "Simple open source self-hosted file sharing solution",
"keywords": [
"share",
"upload",
"transfer",
"files",
"wetransfer"
],
"repository": "psi-4ward/psitransfer",
"bugs": "https://github.com/psi-4ward/psitransfer/issues",
"main": "app.js",
"dependencies": {
"archiver": "^5.3.1",
"axios": "^0.27.2",
"common-streams": "^1.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"debug": "^4.3.4",
"express": "^4.18.2",
"fs-promise": "^2.0.3",
"http-errors": "^2.0.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"tar-stream": "^2.2.0",
"to-object-reducer": "^1.0.1",
"uuid": "^9.0.1"
},
"bin": {
"psitransfer": "cli.js"
},
"devDependencies": {
"filecompare": "^1.0.4",
"testcafe": "^1.18.6",
"testcafe-browser-provider-browserstack": "^1.13.2"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=dev DEBUG=psitransfer:* nodemon -i app -i dist -i data app.js",
"debug": "node --inspect app.js"
},
"engines": {
"node": ">= 10",
"npm": ">= 3"
},
"author": "Christoph Wiechert <[email protected]>",
"contributors": [],
"license": "BSD-2-Clause"
}