-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
115 lines (115 loc) · 3.94 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
{
"private": true,
"engines": {
"node": ">= 10.13"
},
"author": "Lucas Lira Gomes",
"repository": {
"type": "git",
"url": "git+https://github.com/kayak/redux-data-model.git"
},
"bugs": {
"url": "https://github.com/kayak/redux-data-model/issues"
},
"homepage": "https://kayak.github.io/redux-data-model",
"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",
"lint:tsc": "lerna run --parallel lint:tsc",
"test": "lerna run --parallel test",
"test:logs": "lerna run --parallel test:logs",
"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 packages/redux-data-model/src/ packages/redux-data-model-hooks/src/",
"typedoc:post": "node ./scripts/concatDocHeaderFiles",
"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": "9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@size-limit/preset-small-lib": "^4.6.0",
"@types/enzyme": "^3.10.6",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "7.1.9",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@typescript-eslint/typescript-estree": "^4.1.0",
"commitizen": "^4.2.1",
"concat": "^1.0.3",
"conventional-changelog-cli": "^2.1.0",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.8.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"immer": "^6.0.1",
"jest": "^26.4.2",
"jest-extended": "^0.11.5",
"jsdom-global": "^3.0.2",
"lerna": "^3.22.1",
"lodash": "^4.17.20",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.0",
"react-test-renderer": "^16.13.1",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.4",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.26.11",
"rollup-plugin-dts": "1.4.13",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"source-map-loader": "^1.1.0",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"tslib": "^2.0.1",
"typedoc": "^0.16.11",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^4.0.2"
},
"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"
}
}
}