UNPKG

3.2 kBJSONView Raw
1{
2 "name": "@wildberries/redux-core-modules",
3 "version": "0.1.1",
4 "description": "core redux modules",
5 "typings": "./dist/index.d.ts",
6 "main": "dist/index.js",
7 "types": "dist/index.d.ts",
8 "scripts": {
9 "test:watch": "jest --watch",
10 "test": "set CI=true && jest",
11 "test:coverage": "jest --coverage",
12 "alias-resolve": "tscpaths -p tsconfig.json -s ./lib -o ./dist",
13 "compile": "tsc --project tsconfig.json",
14 "lint": "npx eslint . --ext .ts --fix",
15 "commit": "git add . && git commit --no-edit",
16 "packages-vulnerability-check": "check-audit",
17 "release": "npm run commit && git push && npm publish --access=public",
18 "beta": "npm run commit && git push && npm publish --tag beta --access=public",
19 "size": "pkgfiles",
20 "build": "rm -fr ./dist && npm run compile && npm run alias-resolve"
21 },
22 "license": "MIT",
23 "dependencies": {
24 "lodash-es": "4.17.15",
25 "react-redux": "7.2.0",
26 "redux": "4.0.5",
27 "redux-batched-actions": "0.4.1",
28 "redux-devtools-extension": "2.13.8",
29 "redux-saga": "1.1.1",
30 "js-file-download": "0.4.11"
31 },
32 "repository": {
33 "type": "git",
34 "url": "git+https://github.com/mihanizm56/redux-core-modules.git"
35 },
36 "bugs": {
37 "url": "https://github.com/mihanizm56/redux-core-modules/issues"
38 },
39 "homepage": "https://github.com/mihanizm56/redux-core-modules#readme",
40 "devDependencies": {
41 "@wildberries/notifications": "1.0.6",
42 "@commitlint/cli": "9.1.2",
43 "@types/jest": "24.9.1",
44 "@types/lodash-es": "4.17.3",
45 "@types/react": "16.9.11",
46 "@types/react-redux": "7.1.7",
47 "@types/redux-batched-actions": "0.1.5",
48 "@types/redux-devtools-extension": "2.13.2",
49 "@types/redux-saga": "0.10.5",
50 "@types/reselect": "2.2.0",
51 "@types/router5": "5.0.0",
52 "@typescript-eslint/eslint-plugin": "2.5.0",
53 "@typescript-eslint/parser": "2.5.0",
54 "commitizen": "4.2.1",
55 "cross-env": "7.0.2",
56 "cz-customizable": "6.2.0",
57 "eslint": "6.6.0",
58 "eslint-config-airbnb": "18.0.1",
59 "eslint-config-prettier": "6.5.0",
60 "eslint-import-resolver-alias": "1.1.2",
61 "eslint-import-resolver-typescript": "2.0.0",
62 "eslint-import-resolver-webpack": "0.12.1",
63 "eslint-plugin-css-modules": "2.11.0",
64 "eslint-plugin-import": "2.18.2",
65 "eslint-plugin-jsx-a11y": "6.2.3",
66 "eslint-plugin-prettier": "3.1.1",
67 "eslint-plugin-react": "7.16.0",
68 "eslint-plugin-react-hooks": "2.2.0",
69 "eslint-plugin-security": "1.4.0",
70 "husky": "3.0.9",
71 "jest": "25.1.0",
72 "npm-audit-resolver": "2.1.0",
73 "pkgfiles": "2.3.2",
74 "prettier": "1.18.2",
75 "ts-jest": "25.4.0",
76 "tscpaths": "0.0.9",
77 "typescript": "3.8.3"
78 },
79 "files": [
80 "dist/"
81 ],
82 "husky": {
83 "hooks": {
84 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g config/git/commitlint.js",
85 "pre-commit": "npm run lint && git add . && npm run test && npm run build",
86 "pre-push": "npm run size",
87 "prepare-commit-msg": "node ./config/git/prepare-commit.js"
88 }
89 },
90 "config": {
91 "commitizen": {
92 "path": "node_modules/cz-customizable"
93 },
94 "cz-customizable": {
95 "config": "config/git/commitizen.js"
96 }
97 }
98}
\No newline at end of file