forked from openmrs/openmrs-ocl-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.52 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.52 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
{
"name": "openmrs-ocl-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^4.1.3",
"downshift": "3.1.7",
"history": "^4.9.0",
"lodash": "^4.17.10",
"match-sorter": "^2.3.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-autobind": "^1.0.6",
"react-dom": "^16.3.2",
"react-helmet": "^5.2.0",
"react-notifications": "^1.4.3",
"react-notify-toast": "^0.4.0",
"react-redux": "^5.0.7",
"react-render-html": "^0.6.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-scripts": "^2.1.8",
"react-select": "^2.4.2",
"react-table": "^6.8.6",
"react-tooltip": "^3.6.0",
"reactjs-popup": "^1.1.1",
"reactstrap": "^6.5.0",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"uuid": "^3.3.2"
},
"scripts": {
"start": "npm run build:css && react-scripts start",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"test:bamboo": "react-scripts test --env=jsdom -u --ci --coverage --testResultsProcessor ./node_modules/jest-junit",
"lint": "npm run build:css && eslint src/**/*.js src/**/*.jsx",
"coverage": "react-scripts test --env=jsdom --coverage --watch",
"build:css": "node-sass-chokidar ./src/styles/all.scss ./src/styles/all.css --include-path ./node_modules src/styles -o src/styles --output-style compressed",
"watch:css": "node-sass-chokidar ./src/styles/all.scss ./src/styles/all.css --include-path ./node_modules src/styles -o src/styles --watch --recursive"
},
"devDependencies": {
"coveralls": "^3.0.2",
"deep-freeze": "0.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest-junit": "^4.0.0",
"moxios": "^0.4.0",
"node-sass-chokidar": "^1.3.3",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-test-utils": "^0.3.0",
"sinon": "^7.1.1"
},
"jest": {
"collectCoverageFrom": [
"**/src/**/*.{js,jsx}",
"!**/store.js",
"!*/setupTests.js",
"!src/index.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}