-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 KB
/
package.json
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": "mock-event-publisher",
"version": "2.0.0",
"description": "Publishing events for testing purposes",
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"clean": "rm -fr dist",
"prebuild": "yarn clean",
"build": "tsc --build",
"start": "node dist/bin/server.js"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.462.0",
"@standardnotes/domain-core": "^1.41.1",
"@standardnotes/domain-events": "^2.138.1",
"@standardnotes/domain-events-infra": "^1.22.3",
"@standardnotes/time": "^1.18.1",
"cors": "2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"reflect-metadata": "0.1.13",
"winston": "^3.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/winston": "^2.4.4",
"typescript": "^5.0.4"
},
"author": "[email protected]",
"license": "ISC",
"packageManager": "[email protected]"
}