-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "six-sharex",
"version": "1.0.0",
"description": "Personal ShareX server",
"main": "index.js",
"scripts": {
"start": "cd dist/ && node index.js",
"clean": "rimraf dist/",
"test": "npm run build && cd dist/ && node index.js",
"build": "npm run clean && tsc && npm run build:copy",
"build:copy": "copyfiles -u 1 src/**/*.eta dist/"
},
"author": "6ixfalls",
"license": "GNU GPLv3",
"dependencies": {
"@aws-sdk/client-s3": "^3.76.0",
"@prisma/client": "^3.13.0",
"@tsconfig/node16": "^1.0.2",
"discord.js": "^13.6.0",
"eta": "^1.12.3",
"express": "^4.17.3",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.3.2",
"multer": "^1.4.4",
"node-vibrant": "^3.2.1-alpha.1",
"pino": "^7.10.0",
"pino-http": "^6.6.0",
"pino-pretty": "^7.6.1",
"rate-limiter-flexible": "^2.4.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/luxon": "^2.3.1",
"@types/multer": "^1.4.7",
"copyfiles": "^2.4.1",
"prisma": "^3.13.0",
"rimraf": "^3.0.2"
}
}