-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.04 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.04 KB
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
{
"name": "stash.red",
"description": "stash.red is a Small footprint file host (for image, video, audio and text files)",
"version": "2.1.0",
"author": "Bradley 'cmd430' Treweek (https://github.com/cmd430)",
"license": "ISC",
"homepage": "https://github.com/cmd430/stash.red#readme",
"bugs": {
"url": "https://github.com/cmd430/stash.red/issues"
},
"repository": "github:cmd430/stash.red",
"type": "module",
"main": "main.js",
"private": true,
"dependencies": {
"@azure/storage-blob": "^12.27.0",
"@fastify/cookie": "^11.0.2",
"@fastify/formbody": "^8.0.2",
"@fastify/multipart": "^9.0.3",
"@fastify/session": "^11.1.0",
"@fastify/static": "^8.2.0",
"@fastify/view": "^11.1.0",
"@fastify/websocket": "^11.2.0",
"archiver": "^7.0.1",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.2.0",
"cmd430-utils": "github:cmd430/cmd430-utils",
"fastify": "^5.4.0",
"fastify-cloudflare-turnstile": "^2.0.2",
"fastify-plugin": "^5.0.1",
"fastify-session-better-sqlite3-store": "^2.1.1",
"fastify-totp": "^1.0.0",
"ffmpeg-static": "^5.2.0",
"handlebars": "^4.7.8",
"handlebars-paginate": "^0.1.0",
"http-errors": "^2.0.0",
"mathjs": "^14.5.3",
"mime": "^4.0.7",
"nanoid": "^5.1.5",
"sharp": "^0.34.3",
"stream-head": "^3.0.0",
"stream-meter": "^1.0.4",
"tail-file": "^1.4.16",
"tmp-promise": "^3.0.3",
"wasmagic": "^1.0.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"jsdoc": "^4.0.4",
"sass": "^1.89.2"
},
"scripts": {
"sass: compile": "npx sass public/scss:public/css",
"sass: watch": "npx sass --watch public/scss:public/css",
"jsdoc:generate": "npx jsdoc interfaces/database.js interfaces/storage.js -d .github/docs",
"start": "node main.js",
"start:prod": "cross-env NODE_ENV=production npm run start",
"start:dev": "cross-env NODE_ENV=development npm run start",
"git:push": "git push stash && git fetch origin"
},
"engines": {
"node": ">=20.10.0 <=22.15.1"
}
}