-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.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
{
"name": "wastebin",
"version": "1.0.0",
"description": "A pastebin",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc && cp -r src/views src/static build",
"test": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lungers/wastebin.git"
},
"author": "Avrumy <contact@lungers.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lungers/wastebin/issues"
},
"homepage": "https://github.com/lungers/wastebin#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/express-session": "^1.18.1",
"@types/html-minifier": "^4.0.5",
"@types/node": "^22.15.29",
"@types/passport": "^1.0.17",
"@types/qrcode": "^1.5.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@simplewebauthn/server": "^13.1.1",
"bcrypt": "^6.0.0",
"cheerio": "^1.0.0",
"connect-session-knex": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"envalid": "^8.0.0",
"express": "^5.1.0",
"express-async-handler": "^1.2.0",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"highlight.js": "^11.11.1",
"html-minifier": "^4.0.0",
"marked": "^15.0.12",
"marked-gfm-heading-id": "^4.1.1",
"marked-highlight": "^2.2.1",
"mysql": "^2.18.1",
"otplib": "^12.0.1",
"passport": "^0.7.0",
"passport-localapikey-update": "^0.6.0",
"qrcode": "^1.5.4",
"xss": "^1.0.15"
}
}