-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.36 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
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
{
"name": "expressjs-with-postgresql",
"version": "1.0.0",
"type": "module",
"description": "Samples WebApi using Event Sourcing using Emmett, Express.js and PostgreSQL ",
"scripts": {
"setup": "cat .nvmrc | nvm install; nvm use",
"build": "tsup",
"build:ts": "tsc",
"build:ts:watch": "tsc --watch",
"start": "tsx ./src/index.ts",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check \"**/**/!(*.d).{ts,json,md}\"",
"lint:eslint": "eslint '**/*.ts'",
"fix": "run-s fix:eslint fix:prettier",
"fix:prettier": "prettier --write \"**/**/!(*.d).{ts,json,md}\"",
"fix:eslint": "eslint '**/*.ts' --fix",
"test": "run-s test:unit test:int test:e2e",
"test:unit": "glob -d -c \"node --import tsx --test\" **/*.unit.spec.ts",
"test:int": "glob -d -c \"node --import tsx --test\" **/*.int.spec.ts",
"test:e2e": "glob -d -c \"node --import tsx --test\" **/*.e2e.spec.ts",
"test:watch": "run-p test:unit:watch test:int:watch test:e2e:watch",
"test:unit:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.unit.spec.ts",
"test:int:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.int.spec.ts",
"test:e2e:watch": "glob -d -c \"node --import tsx --test --watch\" **/*.e2e.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oskardudycz/EventSourcing.NodeJS.git"
},
"keywords": [
"Event Sourcing"
],
"author": "Oskar Dudycz",
"license": "MIT",
"bugs": {
"url": "https://github.com/oskardudycz/EventSourcing.NodeJS/issues"
},
"homepage": "https://github.com/oskardudycz/EventSourcing.NodeJS#readme",
"dependencies": {
"@event-driven-io/emmett-postgresql": "0.20.0",
"@event-driven-io/emmett-expressjs": "0.20.0"
},
"devDependencies": {
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"glob": "10.3.10",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"tsconfig-paths": "4.2.0",
"tsx": "4.7.1",
"typescript": "5.3.3",
"tsup": "8.0.2",
"@testcontainers/postgresql": "10.13.2"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}