-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.47 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.47 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
{
"name": "cqrs-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:lambda": "rimraf ./dist && npx esbuild src/index.ts --bundle --minify --sourcemap --target=es2020 --outfile=./dist/index.js --platform=node --external:knex",
"package:lambda": "cd dist && zip -r cqrs-ts.zip index.js*",
"build": "rimraf ./dist && esbuild src/index.ts --platform=node --external:oracledb --external:mysql --external:aws-sdk --external:pg-query-stream --external:mysql2 --external:tedious --external:mock-aws-s3 --external:nock --bundle --outfile=dist/index.js",
"dev": "ts-node-dev --project './tsconfig.json' --watch -r tsconfig-paths/register ./src/index.ts",
"test:all": "jest --verbose --runInBand --detectOpenHandles --forceExit",
"test:unit": "jest --verbose --runInBand --detectOpenHandles --forceExit --testMatch **/domain/**/*.spec.ts",
"test:adapter": "jest --verbose --runInBand --detectOpenHandles --forceExit --testMatch **/infrastructure/**/*.spec.ts",
"test:service": "jest --verbose --runInBand --detectOpenHandles --forceExit --testMatch **/application/service/**.spec.ts",
"test:e2e": "jest --verbose --runInBand --detectOpenHandles --forceExit --testMatch **/__test__/**.spec.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@apollo/server": "^4.1.1",
"@types/axios": "^0.14.0",
"@types/config": "^3.3.0",
"@types/dockerode": "^3.3.12",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"axios": "^1.2.1",
"dockerode": "^3.3.4",
"esbuild": "^0.15.13",
"graphql-tag": "^2.12.6",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"rimraf": "^3.0.2",
"rome": "^10.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"tsconfig-replace-paths": "^0.0.11",
"typescript": "^4.8.4"
},
"dependencies": {
"@opentelemetry/api": "^1.3.0",
"@opentelemetry/sdk-node": "^0.34.0",
"@sniptt/monads": "^0.5.10",
"better-sqlite3": "^7.6.2",
"cloudevents": "^6.0.3",
"config": "^3.3.8",
"fastify": "^4.9.2",
"graphql": "^16.6.0",
"knex": "^2.3.0",
"logform": "^2.4.2",
"nats": "^2.9.0",
"observable-fns": "^0.6.1",
"pg": "^8.8.0",
"pg-native": "^3.0.1",
"redis": "^4.5.1",
"sqlite3": "^5.1.2",
"ulid": "^2.3.0",
"winston": "^3.8.2",
"xstate": "^4.34.0",
"zod": "^3.19.1"
}
}