forked from eliahexe/share-mrdemonwolf-me
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.77 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.77 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
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
{
"name": "share",
"version": "4.2.0",
"description": "Advanced custom uploader with web front-end. Allows uploads for images, files, and text. Built with ShareX in mind.",
"keywords": [
"sharex",
"custom-uploader",
"uploader",
"files",
"images",
"text",
"custom"
],
"main": "src/index.js",
"scripts": {
"install": "bower i",
"start": "node src/index.js",
"dev-start": "nodemon src/index.js",
"scss": "sass --watch src/scss:src/public/assets/css --style compressed",
"dev": "concurrently -n \"App,SCSS\" \"npm run dev-start\" \"npm run scss\"",
"lint": "eslint . --ext .js --fix",
"format": "prettier-eslint --write $PWD/'src/**/*.{js,json}'",
"bower": "bower",
"docs": "cd docs; bundle exec jekyll serve",
"test": "NODE_ENV=test mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrDemonWolf/share.git"
},
"author": "Nathan Henniges",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrDemonWolf/share/issues"
},
"homepage": "https://mrdemonwolf.github.io/share",
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"adm-zip": "^0.4.14",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bower": "^1.8.12",
"chai": "^4.3.3",
"compression": "^1.7.4",
"concurrently": "^5.1.0",
"connect-mongo": "^4.2.2",
"consola": "^2.15.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-flash": "0.0.2",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.1",
"express-winston": "^4.1.0",
"filesize": "^6.1.0",
"filesize-parser": "^1.5.0",
"fs-extra": "^9.1.0",
"generate-password": "^1.6.0",
"geoip-lite": "^1.4.2",
"helmet": "^3.22.0",
"js-sha512": "^0.8.0",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"lusca": "^1.7.0",
"method-override": "^3.0.0",
"mjml": "^4.9.0",
"moment": "^2.29.1",
"mongoose": "^5.11.19",
"morgan": "^1.10.0",
"nanoid": "^3.1.20",
"normalize-url": "^5.3.0",
"otplib": "^12.0.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"password-validator": "^5.1.1",
"qrcode": "^1.4.4",
"request-ip": "^2.1.3",
"slugify": "^1.4.7",
"supertest": "^6.1.3",
"validator": "^13.5.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^7.1.1",
"nodemon": "^2.0.7",
"prettier-eslint-cli": "^5.0.1",
"push-dir": "^0.4.1",
"sass": "^1.32.8"
},
"engines": {
"node": ">=12.15.0",
"npm": ">=6.13.4"
}
}