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": "SonarQube",
"version": "0.0.1",
"description": "Put your technical debt under control",
"repository": "SonarSource/sonarqube",
"license": "LGPL-3.0",
"devDependencies": {
"autoprefixer": "6.2.2",
"babel-cli": "6.3.17",
"babel-core": "6.3.17",
"babel-eslint": "^6.0.4",
"babel-loader": "6.2.0",
"babel-plugin-react-transform": "2.0.2",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-register": "6.3.13",
"backbone": "1.2.3",
"backbone.marionette": "2.4.3",
"blueimp-md5": "1.1.1",
"chai": "3.3.0",
"classnames": "2.2.0",
"clipboard": "1.5.5",
"css-loader": "0.23.1",
"d3": "3.5.6",
"del": "2.0.2",
"enzyme": "2.2.0",
"eslint": "^2.13.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-react": "^5.2.2",
"event-stream": "3.3.1",
"expose-loader": "0.7.1",
"express": "4.13.4",
"express-http-proxy": "0.6.0",
"glob": "5.0.15",
"gulp": "3.9.0",
"gulp-autoprefixer": "3.1.0",
"gulp-concat": "2.6.0",
"gulp-cssnano": "2.0.0",
"gulp-if": "2.0.0",
"gulp-less": "3.0.3",
"gulp-rename": "1.2.2",
"gulp-util": "3.0.6",
"handlebars": "2.0.0",
"handlebars-loader": "1.1.4",
"history": "2.0.0",
"imports-loader": "0.6.5",
"jquery": "2.2.0",
"jsdom": "6.5.1",
"lodash": "4.6.1",
"mocha": "2.3.4",
"mockery": "1.7.0",
"moment": "2.10.6",
"numeral": "1.5.3",
"postcss-loader": "0.8.0",
"react": "15.0.1",
"react-addons-perf": "15.0.1",
"react-addons-shallow-compare": "15.0.1",
"react-addons-test-utils": "15.0.1",
"react-dom": "15.0.1",
"react-helmet": "3.1.0",
"react-redux": "4.4.1",
"react-router": "2.0.1",
"react-router-redux": "4.0.2",
"react-select": "1.0.0-beta12",
"react-transform-hmr": "1.0.4",
"redux": "3.3.1",
"redux-logger": "2.2.1",
"redux-simple-router": "1.0.1",
"redux-thunk": "1.0.2",
"script-loader": "0.6.1",
"sinon": "1.15.4",
"sinon-chai": "2.8.0",
"style-loader": "0.13.0",
"underscore": "1.8.3",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"webpack": "1.13.0",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0",
"whatwg-fetch": "0.10.0",
"yargs": "3.27.0"
},
"scripts": {
"build-fast": "gulp build:dev",
"build": "gulp build",
"test": "mocha --opts tests/mocha.opts src/main/js/**/__tests__/**/*",
"coverage": "nyc --exclude tests,**/__tests__/** mocha --opts tests/mocha.opts src/main/js/**/__tests__/**/* && nyc report --reporter lcov --report-dir target/coverage",
"lint": "eslint src/main/js",
"dev": "NODE_ENV=hot node devServer"
},
"engines": {
"node": ">=4"
}
}
|