-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.59 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": "webbasis",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"update": "npx npm-check-updates -u",
"dev": "nodemon ./index.js -e js, json, ejs",
"clearRedis": "node ./tools/clearRedis.js",
"start": "node index.js",
"build": "cd ./landingpage && npm ci && npm run build",
"migration": "node ./database/migrations.js",
"checklocales": "node ./tools/checkLanguageFiles.js"
},
"author": "BolverBlitz",
"license": "AGPL-3.0",
"_moduleAliases": {
"@src": "./src",
"@lib": "./lib",
"@api": "./api",
"@static_api": "./static_api",
"@middleware": "./middleware",
"@config": "./config",
"@e2etest": "./e2e-test/*"
},
"dependencies": {
"@prisma/client": "^5.15.0",
"bcrypt": "^5.1.1",
"bullmq": "^5.4.1",
"busboy": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"error-stack-parser": "^2.1.4",
"express-csp-header": "^5.2.1",
"express-useragent": "^1.0.15",
"hyper-express": "^6.14.12",
"ioredis": "^5.3.2",
"joi": "^17.12.2",
"megahash": "^1.0.5",
"minio": "^8.0.0",
"module-alias": "^2.2.3",
"naudiodon": "^2.3.6",
"node-2fa": "^2.0.3",
"object-hash": "^3.0.0",
"pg": "^8.11.3",
"qrcode-terminal": "^0.12.0",
"randomstring": "^1.3.0",
"sanitize-html": "^2.12.1",
"sharp": "^0.33.4"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"chai": "^5.1.0",
"chai-http": "^4.4.0",
"mocha": "^10.3.0",
"prisma": "^5.15.1"
}
}