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
|
{
"name": "@notdankenough/picbin",
"version": "1.1.0",
"description": "Simple web hoster for your pictures and other media files.",
"main": "index.js",
"scripts": {
"test": "ts-node index.ts --debug",
"build": "tsc",
"init": "node index.js --init",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notdankenough/picbin.git"
},
"keywords": [
"hoster",
"web",
"expressjs",
"pictures"
],
"author": "NotDankEnough <hatesociety@pm.me> (https://hmmtodayiwill.ru/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/notdankenough/picbin/issues"
},
"homepage": "https://github.com/notdankenough/picbin#readme",
"dependencies": {
"@prisma/client": "^4.2.1",
"@types/multer": "^1.4.7",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"commander": "^9.4.0",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.8",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"ini": "^3.0.0",
"jquery": "^3.6.0",
"mime": "^3.0.0",
"multer": "^1.4.5-lts.1",
"tslog": "^3.3.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/commander": "^2.12.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/ini": "^1.3.31",
"prisma": "^4.2.1"
}
}
|