-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.5 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.5 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
93
94
95
96
{
"name": "coverage-admin",
"version": "0.1.0",
"description": "Administration interface for coverage data",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint src/**/*.js",
"test": "react-scripts test --env=jsdom",
"test-ci": "CI=true react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage",
"test:debug": "react-scripts --inspect-brk test --runInBand --env=jsdom"
},
"author": {
"name": "Meso",
"email": "contact@meso.health",
"url": "https://meso.health"
},
"engines": {
"node": ">=6.0.0"
},
"lint-staged": {
"src/**/*.js": "eslint"
},
"dependencies": {
"@emotion/core": "10.0.17",
"@emotion/styled": "10.0.17",
"@material-ui/core": "4.4.2",
"axios": "0.19.0",
"camelcase-keys-all-env": "0.3.4",
"core-js": "3.2.1",
"create-react-app": "3.0.1",
"downshift": "3.2.10",
"emotion-theming": "10.0.19",
"enquire.js": "2.1.6",
"ethiopian-date": "0.0.6",
"jquery": "3.4.0",
"localforage": "1.7.3",
"lodash": "4.17.15",
"moment": "2.22.0",
"normalizr": "3.3.0",
"numeral": "2.0.6",
"prop-types": "15.6.0",
"react": "16.8.4",
"react-dom": "16.8.0",
"react-helmet": "5.2.0",
"react-redux": "7.1.3",
"react-router-dom": "5.0.0",
"react-scrolllock": "4.0.1",
"react-textarea-autosize": "7.1.0",
"react-window": "1.8.1",
"redux": "4.0.1",
"redux-logger": "3.0.6",
"redux-persist": "6.0.0",
"redux-thunk": "2.3.0",
"regenerator-runtime": "0.13.3",
"reselect": "4.0.0",
"rollbar": "2.13.0",
"uuid": "3.3.2"
},
"devDependencies": {
"axios-mock-adapter": "1.16.0",
"enzyme": "3.9.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-react-app": "5.0.1",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"history": "4.9.0",
"husky": "3.0.5",
"lint-staged": "9.2.5",
"prettier": "1.17.0",
"react-scripts": "3.0.1",
"redux-mock-store": "1.5.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run test -- --all --watchAll=false"
}
}
}