-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.76 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "neuro-backend",
"version": "1.0.0",
"description": "Neuro-Backend API with hardened CORS configuration",
"main": "src/app.ts",
"scripts": {
"start": "node dist/src/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"prisma:generate": "npx prisma generate",
"prepare": "husky || true",
"test:cors": "jest tests/cors.test.ts",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist coverage",
"smoke": "bash scripts/smoke-health.sh",
"validate:spec": "npx --yes @redocly/cli@latest lint docs/openapi.yaml --format=stylish",
"build:spec": "mkdir -p dist/docs && cp docs/openapi.yaml dist/docs/openapi.yaml",
"prebuild": "npm run clean && npm run build:spec",
"prestart": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=22.0.0",
"npm": ">=9.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"tests/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "ts-node prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neurowealth/Backend.git"
},
"bugs": {
"url": "https://github.com/Neurowealth/Backend/issues"
},
"homepage": "https://github.com/Neurowealth/Backend#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.112.3",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.78.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.220.0",
"@opentelemetry/resources": "^2.9.0",
"@opentelemetry/sdk-node": "^0.220.0",
"@opentelemetry/sdk-trace-node": "^2.9.0",
"@opentelemetry/semantic-conventions": "^1.43.0",
"@prisma/client": "^5.22.0",
"@prisma/instrumentation": "^7.8.0",
"@sentry/node": "^10.66.0",
"@sentry/profiling-node": "^10.66.0",
"@stellar/stellar-sdk": "^16.0.1",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^7.2.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.6.0",
"helmet": "^8.3.0",
"ioredis": "^5.11.1",
"js-yaml": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"node-cron": "^4.6.0",
"prom-client": "^15.1.3",
"swagger-ui-express": "^5.0.1",
"twilio": "^6.0.2",
"winston": "^3.19.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@aws-sdk/client-ssm": "^3.1075.0",
"@redocly/cli": "^2.34.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.10.6",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"prisma": "^5.22.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"overrides": {
"axios": "^1.18.0",
"brace-expansion": "5.0.9",
"ip-address": "^10.5.0",
"eslint": {
"js-yaml": "^4.3.1"
},
"@eslint/eslintrc": {
"js-yaml": "^4.3.1"
},
"@istanbuljs/load-nyc-config": {
"js-yaml": "^4.3.1"
}
}
}