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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
{
"name": "audit-ui",
"version": "1.0.0",
"description": "",
"main": "bundle.js",
"scripts": {
"start": "gulp",
"build": "gulp build",
"test": "jest",
"testReport": "jest --coverage"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"collapsible-sliding-panel": "1.0.0",
"core-js": "^2.4.0",
"crypto-js": "^3.1.9-1",
"d3": "^4.12.0",
"es6-promise": "^3.2.1",
"filter-bar-utils": "1.0.0",
"jquery": "^2.2.2",
"lodash": "^4.17.4",
"lodash.debounce": "^4.0.8",
"md5": "^2.1.0",
"moment": "^2.13.0",
"moment-timezone": "^0.5.5",
"node-fetch": "^1.5.3",
"react": "^15.6.1",
"react-autosuggest": "^6.0.4",
"react-bootstrap": "^0.31.2",
"react-datepicker": "^0.55.0",
"react-dom": "^15.6.1",
"react-fontawesome": "^0.3.3",
"react-grid-layout": "^0.14.4",
"react-highlight-words": "^0.4.1",
"react-redux": "^4.4.1",
"react-router-dom": "^4.1.1",
"react-select": "^1.2.1",
"react-spinners": "^0.2.5",
"react-split-pane": "^0.1.51",
"recharts": "^0.20.5",
"redux": "^3.3.1",
"redux-form": "^6.2.1",
"redux-thunk": "^2.1.0",
"topojson": "^2.2.0",
"uuid-js": "^0.7.5",
"validator": "^4.3.0",
"vertical-filter-bar": "1.0.4"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^6.0.4",
"babel-jest": "^22.4.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"copy-webpack-plugin": "^4.0.1",
"crypto-js": "^3.1.9-1",
"css-loader": "^0.23.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"eslint": "^3.1.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^0.8.1",
"eslint-plugin-react": "^3.14.0",
"expect": "^1.20.1",
"express": "^4.13.3",
"fetch-mock": "^5.13.1",
"file-loader": "^0.8.5",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.1",
"gulp-css-usage": "^2.0.0",
"gulp-helpers": "^5.0.0",
"gulp-jsx-coverage": "^0.3.8",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"http-proxy-middleware": "^0.8.2",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"istanbul": "^1.0.0-alpha.2",
"istanbul-instrumenter-loader": "^0.2.0",
"jest": "^22.4.3",
"jest-enzyme": "^6.0.0",
"jest-fetch-mock": "^1.5.0",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"nock": "^8.0.0",
"node-sass": "^3.8.0",
"node-watch": "^0.3.5",
"prompt": "^0.2.14",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.4.0",
"sass-loader": "^3.1.2",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"jest": {
"verbose": true,
"setupTestFrameworkScriptFile": "./scripts/test/setupTests.js",
"automock": false,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/test/fileMock.js",
"\\.(css|scss)$": "<rootDir>/scripts/test/styleMock.js"
},
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src",
"utils"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/test/**",
"!**/resources/**",
"!**/dist/**",
"!**/scripts/**",
"!**/tools/**"
]
},
"engines": {
"node": ">=5.1",
"npm": ">=3.3"
}
}
|