-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.49 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sws2apps-api",
"version": "3.4.0",
"description": "Node apps to handle backend operations for all sws2apps services",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"dev:inspect": "cross-env NODE_ENV=development nodemon --inspect src/index.ts",
"build": "rimraf dist && tsc",
"start": "cross-env NODE_ENV=production node dist/index.js",
"start:dev": "cross-env NODE_ENV=development node dist/index.js",
"setup:emulators": "firebase init emulators",
"start:emulators": "firebase emulators:start",
"lint": "eslint src"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"engines": {
"node": "20.x",
"npm": ">=10"
},
"dependencies": {
"@crowdin/crowdin-api-client": "^1.40.0",
"@logtail/node": "^0.5.2",
"bcrypt": "^5.1.1",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-es": "^2.1.0",
"cryptr": "^6.3.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"express-rate-limit": "^7.4.1",
"express-validator": "^7.2.0",
"firebase-admin": "^13.0.1",
"geoip-lite": "^1.4.10",
"global-jsdom": "^25.0.0",
"helmet": "^8.0.0",
"i18next": "^24.1.0",
"i18next-http-middleware": "^3.7.0",
"is-online": "^11.0.0",
"jsdom": "^25.0.1",
"node-2fa": "^2.0.3",
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.13",
"nodemailer": "^6.9.16",
"nodemailer-express-handlebars": "^7.0.0",
"otpauth": "^9.3.5",
"randomstring": "^1.3.0",
"request-ip": "^3.3.0",
"sanitize-html": "^2.13.1",
"serve-favicon": "^2.5.0",
"which-browser": "^0.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/sws2apps/sws2apps-api.git"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/geoip-lite": "^1.4.4",
"@types/node": "^22.10.2",
"@types/nodemailer": "^6.4.17",
"@types/nodemailer-express-handlebars": "^4.0.5",
"@types/randomstring": "^1.3.0",
"@types/request-ip": "^0.0.41",
"@types/sanitize-html": "^2.13.0",
"@types/serve-favicon": "^2.5.7",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}