forked from saga-slice/saga-slice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "saga-slice",
"version": "1.3.0",
"description": "Combines reducers, types, actions and sagas into 1 config file",
"scripts": {
"test": "jest --passWithNoTests",
"test:dist": "node test/dist",
"tdd": "npm run test -- --watch",
"rollup": "rollup -c",
"lint": "eslint lib",
"ts": "tsc",
"deploy": "./scripts/publish.sh",
"commit": "git-cz",
"release": "standard-version"
},
"homepage": "https://github.com/damusix/saga-slice#readme",
"repository": {
"type": "git",
"url": "https://github.com/damusix/saga-slice.git"
},
"bugs": {
"url": "https://github.com/damusix/saga-slice/issues"
},
"author": {
"name": "Danilo Alonso",
"email": "[email protected]",
"url": "https://danilo.io"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/types.d.ts",
"files": [
"dist"
],
"keywords": [
"redux",
"react",
"sagas",
"boilerplate"
],
"devDependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.1",
"@types/jest": "^24.0.24",
"babel-eslint": "^10.0.2",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.1.0",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^4.2.3",
"immer": "^7.x.x",
"jest": "^24.9.0",
"redux": "^4.0.4",
"redux-saga": "^1.1.3",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^5.1.3",
"standard-version": "^7.1.0",
"ts-jest": "^24.2.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"redux": "^4.x.x",
"redux-saga": ">=1.x.x",
"immer": ">=7.x.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"jest"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"env": {
"jest/globals": true,
"browser": true,
"node": true,
"es6": true
},
"settings": {
"react": {
"version": "16.x"
}
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}