-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.04 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
60
61
62
63
{
"name": "@metaboost/api",
"version": "0.1.16",
"type": "module",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc && node ./dist/index.js",
"dev:watch": "tsc && concurrently \"tsc --watch --preserveWatchOutput\" \"sleep 4 && nodemon --delay 2500ms --watch dist --watch .env --watch ../../packages/helpers/dist --watch ../../packages/helpers-backend-api/dist --watch ../../packages/helpers-valkey/dist --watch ../../packages/orm/dist dist/index.js\"",
"start": "node ./dist/index.js",
"lint": "eslint ./src --max-warnings 0",
"lint:fix": "eslint ./src --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"webpush:generate-vapid-keys": "web-push generate-vapid-keys"
},
"dependencies": {
"@metaboost/helpers": "*",
"@metaboost/helpers-backend-api": "*",
"@metaboost/helpers-currency": "*",
"@metaboost/helpers-i18n": "*",
"@metaboost/helpers-requests": "*",
"@metaboost/helpers-valkey": "*",
"@metaboost/orm": "*",
"@metaboost/rss-parser": "*",
"@types/web-push": "^3.6.4",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"joi": "^18.0.2",
"jose": "^6.2.3",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^9.0.3",
"rate-limit-redis": "^4.3.1",
"swagger-ui-express": "^5.0.1",
"web-push": "^3.6.7"
},
"devDependencies": {
"@sqltools/formatter": "^1.2.5",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^24.10.12",
"@types/nodemailer": "^8.0.0",
"@types/supertest": "^7.2.0",
"@types/swagger-ui-express": "^4.1.6",
"app-root-path": "^3.1.0",
"concurrently": "^9.2.1",
"dotenv": "^16.4.5",
"nodemon": "^3.1.10",
"pg": "^8.20.0",
"sql-highlight": "^6.1.0",
"supertest": "^7.0.0",
"typescript": "^5.9.2",
"vitest": "^4.0.18"
}
}