-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lungers/wastebin/issues"
},
"homepage": "https://github.com/lungers/wastebin#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cheerio": "^0.22.31",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/html-minifier": "^4.0.2",
"@types/marked": "^4.3.0",
"@types/node": "^20.1.7",
"@types/passport": "^1.0.12",
"@types/qrcode": "^1.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"connect-session-knex": "^3.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"highlight.js": "^11.8.0",
"html-minifier": "^4.0.0",
"marked": "^5.0.2",
"marked-gfm-heading-id": "^3.0.4",
"marked-highlight": "^2.0.1",
"mysql": "^2.18.1",
"otplib": "^12.0.1",
"passport": "^0.6.0",
"passport-localapikey-update": "^0.6.0",
"qrcode": "^1.5.3",
"xss": "^1.0.14"
}
}