-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "save-server",
"version": "2.0.0",
"description": "A powerful ShareX image and URL server, with support for multiple users.",
"main": "index.js",
"scripts": {
"test": "eslint index.js server/",
"start": "node ."
},
"bugs": "https://github.com/neztore/save-server/issues",
"homepage": "https://github.com/neztore/save-server#readme",
"repository": "https://github.com/Neztore/save-server",
"keywords": [
"sharex",
"server",
"image server",
"image host",
"save-server"
],
"author": "Josh Muir <muir@josh.scot> (https://josh.scot)",
"license": "GPL-3.0-only",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"ejs": "^3.0.1",
"express": "^4.17.1",
"multer": "^2.0.0",
"sqlite3": "^5.0.8",
"validator": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/express": "^4.17.3",
"@types/multer": "^1.4.2",
"eslint": "^7.16.0"
}
}