-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"type": "module",
"name": "edge",
"version": "1.0.0",
"description": "Simple filehost made for Replit.",
"keywords": [
"filehost",
"replit",
"expressjs"
],
"license": "GPL-3.0-or-later",
"repository": "https://github.com/rayhanadev/edge",
"homepage": "https://github.com/rayhanadev/edge",
"author": "Ray Arayilakath <rayhanadev@protonmail.com>",
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"isbinaryfile": "^4.0.8",
"mime": "^2.5.2",
"morgan": "^1.10.0",
"sanitize-filename": "^1.6.3",
"stream-mime-type": "^1.0.2"
},
"devDependencies": {
"nodemon": "^2.0.12",
"eslint": "^8.16.0",
"prettier": "^2.6.2"
},
"main": "index",
"engines": {
"node": ">= 14"
},
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "nodemon --ext js,json,html index.js ",
"lint": "eslint index.js --config ./eslint.config.json --ext .js",
"lint:fix": "eslint index.js --config ./eslint.config.json --ext .js --fix",
"format": "prettier --check . --config ./prettier.config.json",
"format:fix": "prettier --write . --config ./prettier.config.json"
}
}