forked from kayak/redux-data-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 4.02 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
{
"private": true,
"engines": {
"node": ">= 10.13"
},
"author": "Lucas Lira Gomes",
"repository": {
"type": "git",
"url": "git+https://github.com/kayak/react-resux.git"
},
"bugs": {
"url": "https://github.com/kayak/react-resux/issues"
},
"homepage": "https://kayak.github.io/react-resux",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf dist js_coverage .rpt2_cache && lerna run clean && lerna clean -y",
"bootstrap": "lerna bootstrap",
"lint": "lerna run --parallel lint",
"lint:fix": "lerna run --parallel lint:fix",
"test": "lerna run --parallel test",
"test:update": "lerna run test:update",
"test:watch": "lerna run test:watch",
"test:coverage": "lerna run test:coverage",
"docs:watch": "npm run typedoc:build && npm --prefix docs start",
"docs:build": "npm run typedoc:build && npm --prefix docs run build",
"docs:deploy": "npm run docs:build && npm --prefix docs run publish-gh-pages",
"changelog": "npm run changelog",
"coveralls": "lerna run coveralls",
"build": "lerna bootstrap && lerna run build",
"size": "lerna run --no-private size",
"typedoc:pre": "rimraf docs/docs/api",
"typedoc": "npm run build && typedoc",
"typedoc:post": "npm run typedoc:post:readme && npm run typedoc:post:subscriber && npm run typedoc:post:model && npm run typedoc:post:modeloptions",
"typedoc:post:readme": "concat -o docs/docs/api/README.md docs/docs/headers/readme.md docs/docs/api/README.md",
"typedoc:post:model": "concat -o docs/docs/api/classes/model.md docs/docs/headers/modelClass.md docs/docs/api/classes/model.md",
"typedoc:post:modeloptions": "concat -o docs/docs/api/interfaces/modeloptions.md docs/docs/headers/modelOptionsInterface.md docs/docs/api/interfaces/modeloptions.md",
"typedoc:post:subscriber": "concat -o docs/docs/api/classes/subscriber.md docs/docs/headers/subscriberClass.md docs/docs/api/classes/subscriber.md",
"typedoc:build": "npm run typedoc:pre && npm run typedoc && npm run typedoc:post",
"release": "lerna publish",
"release:docs": "npm run docs:deploy",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@size-limit/preset-small-lib": "2.1.5",
"@types/enzyme": "3.10.4",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/jest": "24.0.23",
"@types/lodash": "4.14.149",
"@types/node": "12.12.17",
"@types/react": "16.9.16",
"@types/react-dom": "16.9.4",
"@types/redux": "3.6.0",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"@typescript-eslint/typescript-estree": "2.11.0",
"commitizen": "4.0.3",
"concat": "1.0.3",
"conventional-changelog-cli": "2.0.23",
"coveralls": "3.0.5",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.7.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "2.3.0",
"gh-pages": "2.0.1",
"husky": "3.0.2",
"immer": "4.0.2",
"lerna": "3.18.3",
"lodash": "4.17.15",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-redux": "7.1.1",
"redux": "4.0.4",
"redux-saga": "1.1.3",
"reselect": "4.0.0",
"rimraf": "3.0.0",
"rollup": "1.20.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "6.2.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.24.0",
"source-map-loader": "0.2.4",
"ts-loader": "6.2.1",
"tslib": "1.10.0",
"typedoc": "0.15.4",
"typedoc-plugin-markdown": "2.2.14",
"typescript": "3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --parallel test && lerna run --parallel lint",
"pre-push": "lerna run --parallel test && lerna run --parallel lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}