-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.75 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
67
68
69
70
{
"name": "ts-ddd",
"version": "0.0.1",
"description": "Amazing DDD tools and where to find them",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Davide Caruso <davide.caruso93@gmail.com>",
"homepage": "https://davidecaruso.github.io/ts-ddd",
"repository": "git+https://github.com/davidecaruso/ts-ddd.git",
"bugs": {
"url": "https://github.com/davidecaruso/ts-ddd/issues"
},
"keywords": [
"ddd",
"ts-ddd",
"cqrs",
"typescript",
"typescript-library",
"ddd-architecture",
"hexagonal-architecture",
"typescript-ddd"
],
"scripts": {
"build": "tsc --build",
"lint": "eslint --fix-dry-run ./",
"lint:fix": "eslint --fix ./",
"pretty": "prettier --check ./",
"pretty:fix": "prettier --write ./",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"fp-ts": "^2.12.3",
"io-ts": "^2.2.19",
"io-ts-types": "^0.5.19"
},
"devDependencies": {
"@types/bson": "^4.2.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.4",
"@types/prettier": "^2.7.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-fp-ts": "^0.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"bson": "^4.7.2",
"uuid": "^9.0.0"
},
"peerDependenciesMeta": {
"bson": {
"optional": true
},
"uuid": {
"optional": true
}
}
}