-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "saga-action-creator",
"version": "1.1.9",
"description": "A toolkit to auto generate actions for the redux-saga.",
"repository": "https://github.com/Justinidlerz/saga-action-creator",
"bugs": "https://github.com/Justinidlerz/saga-action-creator/issues",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "yarn test --coverage",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"server": "parcel serve example/index.html",
"watch:rollup": "rollup -cw",
"start": "npm-run-all -p watch:rollup server"
},
"keywords": [
"rollup",
"parcel",
"typescript"
],
"author": "Justinidlerz <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-typescript": "7.9.0",
"@types/jest": "25.1.4",
"@types/lodash": "^4.14.149",
"@types/react": "16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"babel-preset-es2015-rollup": "^3.0.0",
"jest": "25.2.3",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"prettier": "2.0.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "^7.2.0",
"rollup": "2.2.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-typescript2": "0.27.0",
"ts-jest": "^25.2.1",
"typescript": "3.8.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"jest",
"git add"
]
},
"dependencies": {
"lodash": "^4.17.15",
"redux": "4.0.5",
"redux-saga": "1.1.3"
}
}