forked from centreon/centreon-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.62 KB
/
package.json
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
{
"name": "centreon",
"version": "19.04.1",
"description": "centreon web package",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --config ./webpack.config.dev.js",
"watch": "webpack --mode=development --config ./webpack.config.dev.js --watch",
"eslint": "eslint ./www/front_src --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "npm run eslint -- --fix",
"test": "jest",
"test:watch": "npm test -- --watch",
"start:dev": "npm run build:dev -- --watch"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.7.7",
"@centreon/eslint-config-centreon": "centreon/eslint-config-centreon",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.6",
"@typescript-eslint/parser": "2.12.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.13.6",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.13",
"jest": "^24.8.0",
"jest-emotion": "^10.0.14",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"postcss-safe-parser": "^4.0.1",
"prettier": "^1.18.2",
"react-mock-router": "^1.0.15",
"react-testing-library": "^8.0.1",
"redux-mock-store": "^1.5.3",
"resolve-url-loader": "^3.1.0",
"sass-loader": "^7.1.0",
"terser-webpack-plugin": "^1.4.2",
"typescript": "^3.7.4",
"url-loader": "^2.1.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-livereload-plugin": "^2.2.0",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@centreon/ui": "centreon/centreon-ui",
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.5.2",
"dom-serializer": "^0.1.1",
"install": "^0.13.0",
"loaders.css": "^0.1.2",
"moment-timezone": "^0.5.26",
"numeral": "^2.0.6",
"query-string": "^5.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-full-screen": "^0.2.4",
"react-fullscreen-crossbrowser": "^1.0.9",
"react-redux": "^7.1.0",
"react-redux-i18n": "^1.9.3",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.3.0",
"react-select": "^3.0.4",
"redux": "^4.0.4",
"redux-batched-actions": "^0.4.1",
"redux-form": "^8.2.4",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"systemjs": "^6.1.3",
"systemjs-plugin-css": "^0.1.37",
"yup": "^0.27.0"
},
"jest": {
"testResultsProcessor": "jest-junit",
"testURL": "http://localhost/"
},
"jest-junit": {
"suiteName": "jest tests",
"output": "./jest-test-results.xml"
}
}