-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.25 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.25 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": "domaindrivers.allocator",
"version": "1.0.0",
"description": "Domain Drivers Allocator",
"type": "module",
"scripts": {
"setup": "cat .nvmrc | nvm install; nvm use",
"build": "run-s build:ts",
"build:ts": "tsc -b",
"build:ts:watch": "tsc -b --watch",
"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:unit": "glob -d -c \"node --import tsx --test\" **/*.unit.spec.ts",
"test:int": "glob -d -c \"node --import tsx --test \" **/*.int.spec.ts",
"test:singlefile": "node --import tsx --test",
"test:watch": "run-p test:unit:watch test:int: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",
"generate:migration": "drizzle-kit generate:pg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oskardudycz/EventSourcing.NodeJS.git"
},
"dependencies": {
"@date-fns/utc": "1.2.0",
"bignumber.js": "9.1.2",
"close-with-grace": "^1.3.0",
"date-fns": "3.6.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.7",
"ioredis": "^5.3.2",
"pg": "^8.11.5",
"pg-format": "^1.0.4"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.8.1",
"@types/node": "20.11.30",
"@types/pg": "^8.11.4",
"@types/pg-format": "^1.0.5",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"drizzle-kit": "^0.20.14",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-x": "0.4.4",
"eslint-plugin-prettier": "5.1.3",
"glob": "10.3.10",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"supertest": "6.3.4",
"testcontainers": "10.7.2",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsx": "4.7.1",
"typescript": "5.4.3"
}
}