-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.07 KB
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
{
"name": "react-async-client",
"license": "MIT",
"main": "lib/index.js",
"module": "./lib/index.js",
"author": "Vyacheslav Salakhutdinov <megazoll@gmail.com>",
"version": "0.14.2",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.23.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-loader": "^2.1.2",
"eslint-plugin-flowtype": "^3.6.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"react-test-renderer": "^16.8.6",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-saga": "^1.0.2",
"rimraf": "^2.6.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"peerDependencies": {
"prop-types": ">=15.6.0",
"ramda": ">=0.26",
"react": ">=16.8.0",
"react-redux": ">=6.0.0",
"redux": ">=4.0.0",
"redux-saga": ">=1.0.0"
},
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint src -f checkstyle -o reports/eslint.xml",
"lint:boil": "npm run lint -- --max-warnings 0",
"prebuild": "npm run clean",
"build": "webpack --mode production && babel src --out-dir lib",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/test-utils/"
],
"collectCoverage": true,
"coverageDirectory": "reports",
"coverageReporters": [
"cobertura"
],
"setupFilesAfterEnv": [
"./__tests__/test-utils/setup.js"
]
}
}