-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.01 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
74
75
76
77
78
{
"name": "react-event-storm",
"version": "5.1.7",
"description": "React wrapper for event-store library",
"main": "./index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "jest",
"bundle": "rollup -c",
"lint": "eslint src/*.js",
"test:watch": "jest --watch",
"build": "rimraf ./dist && yarn run bundle",
"publish-lib": "yarn run build && cd dist && yarn publish"
},
"keywords": [
"hooks",
"store",
"event-sourcing",
"react-event-storm",
"store-management"
],
"author": "artur93gev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/event-storm/react-event-storm.git"
},
"homepage": "https://github.com/event-storm/react-event-storm#readme",
"bugs": {
"url": "https://github.com/event-storm/react-event-storm/issues"
},
"peerDependencies": {
"event-storm": "^5.0.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-jest": "^26.6.3",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "^3.11.0",
"eslint": "^7.19.0",
"event-storm": "^5.0.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.38.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-terser": "^7.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"src/*.js": [
"yarn run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run jest",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {}
}