-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
109 lines (109 loc) · 2.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "droppy",
"description": "Self-hosted file storage",
"author": "droppyjs <hello@droppyjs.com>",
"repository": "https://github.com/droppyjs/droppy",
"license": "BSD-2-Clause",
"bugs": "https://github.com/droppyjs/droppy/issues",
"preferGlobal": true,
"private": true,
"engines": {
"node": ">= 14.14.0"
},
"scripts": {
"build": "DROPPY_CACHE_PATH=$PWD/packages/cli/dist/cache.json lerna run --stream build --",
"start": "lerna run --stream start --",
"bootstrap": "lerna bootstrap",
"lint": "eslint packages",
"test": "jest",
"postinstall": "husky install && yarn bootstrap",
"pub:canary": "lerna publish --c",
"pub": "yarn build && lerna publish && git push"
},
"resolutions": {
"hosted-git-info": "^4.0.2",
"lodash": "4.17.21",
"trim-newlines": "4.0.2",
"normalize-url": "6.1.0",
"glob-parent": "6.0.1",
"conventional-changelog-core": "4.2.3",
"tar": "6.1.14"
},
"dependencies": {
"chokidar": "3.5.2",
"colorette": "1.3.0",
"content-disposition": "0.5.3",
"daemonize-process": "3.0.0",
"escape-string-regexp": "5.0.0",
"etag": "1.8.1",
"image-size": "1.0.0",
"json-buffer": "3.0.1",
"lodash.debounce": "4.0.8",
"lodash.throttle": "4.1.1",
"mime-types": "2.1.32",
"minimist": "1.2.6",
"mv": "2.1.1",
"original-url": "1.2.3",
"ps-node": "0.1.6",
"rfdc": "1.3.0",
"rrdir": "8.2.2",
"send": "0.17.1",
"strip-ansi": "7.0.0",
"untildify": "4.0.0",
"which": "2.0.2",
"ws": "8.2.1",
"yazl": "2.5.1"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-assertions": "^7.25.6",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"babel-jest": "^29.7.0",
"clean-css": "5.1.5",
"eslint": "9.11.1",
"eslint-config-standard": "^17.1.0",
"globals": "^15.9.0",
"html-minifier": "4.0.0",
"husky": "^7.0.2",
"jest": "^29.7.0",
"lerna": "^6.6.2",
"lint-staged": "^11.1.2",
"nx": "^16.2.2",
"postcss": "8.3.6",
"terser": "5.7.2",
"updates": "12.1.0",
"uppie": "1.1.4"
},
"files": [
"client",
"server",
"dist",
"droppy.js",
"docker-start.sh"
],
"keywords": [
"self-hosted",
"personal",
"file",
"server",
"http",
"https",
"media",
"cloud",
"storage",
"self",
"hosted"
],
"browserslist": "defaults",
"volta": {
"node": "20.17.0",
"yarn": "1.22.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}