-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2 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
71
72
73
{
"name": "use-cqrs",
"version": "1.2.2-beta",
"description": "React hooks library for applying CQRS design patterns and Single Responsibility Principle (SRP) in frontend development",
"keywords": [
"cqrs",
"react-hooks",
"command",
"query",
"event",
"ddd",
"oop",
"typescript",
"srp"
],
"author": "Patrick Thach <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thachp/use-cqrs.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"testEnvironment": "jsdom",
"devDependencies": {
"@commitlint/cli": "16.0.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/node": "16.11.17",
"@types/react": "^17.0.38",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"husky": "7.0.4",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"lint-staged": "12.1.4",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reflect-metadata": "^0.1.13",
"release-it": "14.11.8",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@wry/equality": "^0.5.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"mediatr-ts": "^0.2.1",
"typedi": "^0.10.0"
}
}