-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.65 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
61
62
63
64
{
"name": "sharex",
"version": "1.0.0",
"description": "ShareX is a file-sharing application",
"main": "dist/server.js",
"scripts": {
"build": "npx prisma generate && tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn ./src/server.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexindevs/ShareX.git"
},
"keywords": [
"File",
"sharing"
],
"author": "Alexin and Oche",
"bugs": {
"url": "https://github.com/OcheVerse/ShareX-B/issues"
},
"homepage": "https://github.com/OcheVerse/ShareX-B#readme",
"license": "ISC",
"devDependencies": {
"@types/clamscan": "^2.0.8",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.8.1",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.6",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.8",
"@types/winston": "^2.4.4",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"clamscan": "^2.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.18.2",
"firebase-admin": "^12.0.0",
"joi": "^17.12.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.8",
"prisma": "^5.8.1",
"short-uuid": "^4.2.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
}
}