-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.32 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.32 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "untitled",
"version": "0.1.0",
"private": true,
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/**/registerServiceWorker.js",
"!src/**/index.js",
"!src/**/httpFetch.js",
"!src/**/setupTests.js"
],
"coverageThreshold": {
"global": {
"branches": 30,
"functions": 30,
"lines": 30,
"statements": 30
}
}
},
"dependencies": {
"axios": "^0.19.0",
"deep-object-diff": "^1.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^6.3.0",
"immutable": "^3.8.2",
"jest-localstorage-mock": "^2.2.0",
"moment": "^2.21.0",
"normalizr": "^3.2.4",
"prop-types": "latest",
"raven-for-redux": "^1.3.0",
"raven-js": "^3.24.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"react-spinkit": "^3.0.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.2",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^4.0.0",
"rxjs": "5.5.8"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --verbose",
"eject": "react-scripts eject",
"test:coverage": "react-scripts test --env=jsdom --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"commit": "git-cz",
"precommit": "yarn lint",
"lint": "(eslint --fix --ext=js --ext=jsx . ) && echo Lint Passed! ALL Clear! ❤"
},
"devDependencies": {
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0"
},
"eslintIgnore": [
"build/*",
"node_modules/*",
"index.js",
"registerServiceWorker.js",
"coverage/*",
"*__mocks__*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}