-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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": "webbasis",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"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": {
"amqplib": "^0.10.9",
"bcrypt": "^6.0.0",
"busboy": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"ejs": "^4.0.1",
"error-stack-parser": "^2.1.4",
"express-csp-header": "^6.3.0",
"express-useragent": "^2.0.2",
"html-minifier-next": "^4.19.0",
"hyper-express": "^6.17.3",
"ioredis": "^5.9.2",
"ip3country": "^5.0.0",
"joi": "^18.0.2",
"megahash": "^1.0.5",
"minio": "^8.0.6",
"module-alias": "^2.2.3",
"node-2fa": "^2.0.3",
"object-hash": "^3.0.0",
"pg": "^8.17.1",
"qrcode-terminal": "^0.12.0",
"randomstring": "^1.3.1",
"sanitize-html": "^2.17.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"chai": "^6.2.2",
"chai-http": "^5.1.2",
"mocha": "^11.7.5"
}
}