forked from reactive/data-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.48 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"release": "lerna publish",
"lint": "eslint --ext .ts,.tsx,.js",
"format": "eslint --fix \"packages/*/src/**/*.{js,ts,tsx}\"",
"clean": "lerna clean",
"build": "ttsc --build && lerna run build --stream",
"build:bundle": "lerna run build:bundle --stream",
"build:clean": "lerna run build:clean --stream",
"build:types": "ttsc --build",
"test": "cross-env NODE_ENV=test jest",
"test:ci": "yarn test -- --ci",
"test:coverage": "yarn test -- --coverage",
"prepare": "yarn run build:types"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": {
"production": [
"> 1%",
"Firefox ESR",
"not dead",
"not ie<12",
"not OperaMini all"
],
"legacy": [
"> 0.5%",
"Firefox ESR",
"not dead",
"not ie<11",
"not safari<11",
"not OperaMini all"
]
},
"devDependencies": {
"@anansi/babel-preset": "^1.1.3",
"@anansi/eslint-plugin": "^0.8.5",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/react": "^9.5.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.23",
"@zerollup/ts-transform-paths": "^1.7.12",
"babel-jest": "^25.1.0",
"conventional-changelog-anansi": "^0.1.1",
"core-js": "^3.6.4",
"cpy-cli": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"ignore-styles": "^5.0.1",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"nock": "^12.0.0",
"prettier": "^1.19.1",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-test-renderer": "^16.13.0",
"redux": "^4.0.5",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"ttypescript": "^1.5.10",
"typescript": "^3.8.3",
"whatwg-fetch": "^3.0.0"
},
"resolutions": {
"@lerna/conventional-commits": "https://github.com/ntucker/lerna-conventional-commits.git",
"acorn": "7.1.1"
},
"version": "0.0.0"
}