forked from chibisafe/chibisafe
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
97 lines (97 loc) · 3.01 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
{
"name": "lolisafe",
"version": "3.0.0",
"description": "Blazing fast file uploader and awesome bunker written in node! 🚀",
"repository": {
"type": "git",
"url": "https://github.com/BobbyWibowo/lolisafe"
},
"bugs": {
"url": "https://github.com/BobbyWibowo/lolisafe/issues"
},
"engines": {
"node": ">=18.17.0"
},
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node ./lolisafe.js",
"start:reload": "cross-env NODE_ENV=production gulp watch",
"pm2": "cross-env NODE_ENV=production pm2 start ./lolisafe.js",
"lint": "gulp lint",
"build": "gulp default",
"dev": "cross-env NODE_ENV=development gulp build-dev && cross-env NODE_ENV=development node ./lolisafe.js",
"dev:reload": "cross-env NODE_ENV=development gulp watch",
"migrate": "node ./scripts/migrate.js",
"bump-versions": "node ./scripts/bump-versions.js",
"cf-purge": "node ./scripts/cf-purge.js",
"clean-up": "node ./scripts/clean-up.js",
"delete-expired": "node ./scripts/delete-expired.js",
"rebuild-hashes": "node ./scripts/rebuild-hashes.js",
"thumbs": "node ./scripts/thumbs.js",
"pull": "git pull && cross-env NODE_ENV=production yarn",
"stash": "git stash || true",
"stash-pop": "git stash pop || true",
"rebuild-dependencies": "rm -f ./yarn.lock && yarn"
},
"dependencies": {
"abort-controller": "~3.0.0",
"bcrypt": "~5.1.1",
"better-sqlite3": "~9.4.3",
"blake3": "~2.1.7",
"chokidar": "~3.6.0",
"clamscan": "~2.1.2",
"content-disposition": "~0.5.4",
"cross-env": "~7.0.3",
"etag": "~1.8.1",
"fastq": "~1.17.1",
"fluent-ffmpeg": "~2.1.2",
"fresh": "~0.5.2",
"fs-jetpack": "~5.1.0",
"helmet": "~6.2.0",
"hyper-express": "~6.14.12",
"jszip": "~3.10.1",
"knex": "~3.1.0",
"live-directory": "~2.3.2",
"markdown-it": "~14.0.0",
"node-fetch": "~2.7.0",
"nunjucks": "~3.2.4",
"parse-duration": "~1.1.0",
"randomstring": "~1.3.0",
"range-parser": "~1.2.1",
"rate-limiter-flexible": "~5.0.0",
"search-query-parser": "~1.6.0",
"sharp": "~0.33.2",
"systeminformation": "~5.22.0"
},
"devDependencies": {
"@ronilaukkarinen/gulp-stylelint": "~14.1.2",
"browserslist": "~4.23.0",
"bulma": "~0.9.4",
"cssnano": "~6.0.5",
"eslint": "~8.57.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-compat": "~4.2.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-n": "~16.6.2",
"eslint-plugin-promise": "~6.1.1",
"gulp": "~4.0.2",
"gulp-buble": "~0.9.0",
"gulp-cli": "~2.3.0",
"gulp-dart-sass": "~1.1.0",
"gulp-eslint-new": "~1.9.1",
"gulp-if": "~3.0.0",
"gulp-nodemon": "~2.5.0",
"gulp-postcss": "~10.0.0",
"gulp-replace": "~1.1.4",
"gulp-sourcemaps": "~3.0.0",
"gulp-terser": "~2.1.0",
"postcss": "~8.4.35",
"postcss-preset-env": "~9.4.0",
"stylelint": "~15.11.0",
"stylelint-config-standard-scss": "~11.1.0"
},
"volta": {
"node": "20.11.1",
"yarn": "1.22.21"
}
}