-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "eventsourcing.nodejs",
"version": "6.0.0",
"description": "Samples of Event Sourcing in JavaScript and TypeScript",
"main": "index.js",
"scripts": {
"setup": "cat .nvmrc | nvm install; nvm use",
"build": "run-s lint build:ts",
"build:ts": "tsc",
"build:ts:watch": "tsc --watch",
"lint": "run-s lint:eslint lint:prettier",
"lint:prettier": "prettier --check \"**/**/!(*.d).{ts,json,md,sql}\"",
"lint:eslint": "eslint **/*.ts",
"fix": "run-s fix:eslint fix:prettier",
"fix:prettier": "prettier --write \"**/**/!(*.d).{ts,json,md,sql}\"",
"fix:eslint": "eslint **/*.ts --fix",
"dev:start": "nodemon src/index.ts",
"test": "run-s test:unit test:api",
"test:unit": "jest unit",
"test:api": "jest api"
},
"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": {
"express": "4.18.2"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/jest": "29.5.11",
"@types/node": "20.10.6",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.2",
"jest": "29.7.0",
"nodemon": "3.0.2",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}