-
Notifications
You must be signed in to change notification settings - Fork 731
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "@crowd/data-access-layer",
"main": "src/index.ts",
"scripts": {
"lint": "npx eslint --ext .ts src --max-warnings=0",
"format": "npx prettier --write \"src/**/*.ts\"",
"format-check": "npx prettier --check .",
"tsc-check": "tsc --noEmit"
},
"dependencies": {
"@crowd/common": "workspace:*",
"@crowd/database": "workspace:*",
"@crowd/integrations": "workspace:*",
"@crowd/logging": "workspace:*",
"@crowd/opensearch": "workspace:*",
"@crowd/queue": "workspace:*",
"@crowd/redis": "workspace:*",
"@crowd/telemetry": "workspace:*",
"@crowd/types": "workspace:*",
"html-to-text": "~9.0.5",
"lodash": "^4.18.1",
"lodash.clonedeep": "^4.5.0",
"lodash.map": "^4.6.0",
"lodash.merge": "^4.6.2",
"lodash.pickby": "^4.6.0",
"lodash.max": "^4.0.1",
"lodash.min": "^4.0.1",
"moment": "~2.29.4",
"pg-promise": "^11.4.3",
"pg-query-stream": "^4.7.0",
"uuid": "^9.0.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/node": "^18.16.3",
"sequelize": "6.37.8",
"typescript": "^5.6.3"
}
}