-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
119 lines (119 loc) · 2.96 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
116
117
118
119
{
"name": "react-intl-redux",
"version": "2.4.1",
"description": "Redux binding for React Intl",
"main": "lib",
"side-effects": false,
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib",
"clean": "del lib coverage",
"lint": "eslint --ignore-path .gitignore --ext js,md .",
"prepublish": "run-s clean build",
"test": "jest"
},
"peerDependencies": {
"@babel/runtime": "^7.17.9",
"prop-types": "^15.8.1",
"react": "^16.12.0 || ^17.0.2 || ^18.0.0",
"react-intl": "^2.2.2 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"react-redux": "^5.0.1 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/plugin-transform-shorthand-properties": "^7.16.7",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-jest": "^28.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"enzyme": "^3.11.0",
"eslint": "^8.15.0",
"eslint-config-concise": "^0.40.1",
"eslint-config-concise-esnext": "^0.40.1",
"eslint-config-concise-jest": "^0.40.1",
"eslint-config-concise-react": "^0.40.1",
"eslint-plugin-react": "^7.29.4",
"husky": "^3.1.0",
"immutable": "^4.0.0",
"intl": "^1.2.5",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jsdom": "^19.0.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier-eslint-cli": "^5.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^6.4.4",
"react-redux": "^8.0.1",
"react-test-renderer": "^17.0.2",
"redux": "^4.2.0",
"redux-immutable": "^4.0.0"
},
"repository": "ratson/react-intl-redux",
"license": "MIT",
"files": [
"*.md",
"LICENSE",
"lib",
"src"
],
"keywords": [
"react",
"reactjs",
"react-intl",
"react-redux",
"intl",
"i18n",
"redux"
],
"browserslist": [
"last 2 versions",
"Android > 2",
"last 2 ChromeAndroid versions"
],
"jest": {
"testEnvironment": "jsdom"
},
"eslintConfig": {
"extends": [
"concise",
"concise-esnext",
"concise-jest",
"concise-react"
],
"rules": {
"comma-dangle": "off",
"default-param-last": "off",
"react/jsx-curly-newline": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}