-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.69 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
{
"name": "@metaboost/management-api",
"version": "0.1.15",
"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/management-orm/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"
},
"dependencies": {
"@metaboost/helpers": "*",
"@metaboost/helpers-backend-api": "*",
"@metaboost/helpers-currency": "*",
"@metaboost/helpers-i18n": "*",
"@metaboost/helpers-requests": "*",
"@metaboost/helpers-valkey": "^0.1.8",
"@metaboost/management-orm": "*",
"@metaboost/orm": "*",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"joi": "^18.2.1",
"jsonwebtoken": "^9.0.2",
"rate-limit-redis": "^4.3.1",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@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/supertest": "^7.2.0",
"@types/swagger-ui-express": "^4.1.6",
"concurrently": "^9.2.1",
"dotenv": "^16.4.5",
"nodemon": "^3.1.10",
"pg": "^8.21.0",
"supertest": "^7.0.0",
"typescript": "^5.9.2",
"uuid": "^14.0.0",
"vitest": "^4.0.18"
}
}