-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.83 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "express-xm",
"version": "1.0.0",
"private": true,
"description": "express xm",
"homepage": "https://github.com/manojconcept/express-xm#readme",
"bugs": {
"url": "https://github.com/manojconcept/express-xm/issues"
},
"workspaces": [
"apps/*",
"gateway",
"shared",
"data-sources",
"scripts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/manojconcept/express-xm.git"
},
"license": "ISC",
"author": "manojconcept",
"type": "module",
"main": "src/index.js",
"lint-staged": {
"*.{ts,js,json,css,scss,html,md}": "prettier . --write"
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start:check": "npm run typecheck && npm run lint && npx prettier . --write",
"dev": "node --watch --trace-deprecation --env.file=.env src/scripts",
"dev:test": "node -r ts-node/register --watch --trace-deprecation --env-file=.env index.ts",
"auth": "<<<<<--------------------------/Auth Service/------------------------------------->>>>>",
"dev:auth": "tsx --watch --trace-deprecation --env-file=.env services/auth/src/index.ts",
"auth:mig:cre": "ts-node -r tsconfig-paths/register scripts/migration-create.ts auth",
"auth:mig:gen": "ts-node -r tsconfig-paths/register scripts/migration-generate.ts auth",
"auth:mig:run": "ts-node -r tsconfig-paths/register scripts/migration-run.ts auth",
"Task": "<<<<<--------------------------/Task Service/------------------------------------->>>>>",
"dev:task": "node -r ts-node/register --watch --trace-deprecation --env-file=.env services/task/src/index.ts",
"gateway": "<<<<<--------------------------/Gateway Service/------------------------------------->>>>>",
"dev:gateway": "node -r ts-node/register --watch --trace-deprecation --env-file=.env gateway/index.ts",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"bcrypt": "^6.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"express": "^5.2.1",
"http-proxy-middleware": "^3.0.5",
"jsonwebtoken": "^9.0.3",
"pg": "^8.18.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.28",
"typescript": "^5.9.3",
"ulid": "^3.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/http-proxy-middleware": "^0.19.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"husky": "^9.1.7",
"jest": "^19.0.2",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0"
}
}