forked from ManageIQ/manageiq-v2v
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.36 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
111
112
{
"name": "manageiq-v2v",
"version": "0.0.0",
"scripts": {
"test": "npm run lint && jest",
"test:watch": "jest --watchAll",
"test:current": "jest --watch",
"prettier": "prettier --write 'app/javascript/**/*.js' '*.{js,json}'",
"build": "yarn run prettier && yarn run lint",
"stylelint": "stylelint 'app/**/*.scss'",
"lint": "eslint app/javascript",
"lint:fix": "eslint --fix app/javascript"
},
"devDependencies": {
"axios": "^0.18.0",
"axios-mock-adapter": "^1.15.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.2.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "~6.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "~2.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"patternfly-react": "2.10.1",
"prettier": "^1.9.2",
"prettier-eslint": "^8.8.1",
"react-test-renderer": "^16.3.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0"
},
"dependencies": {
"bootstrap-touchspin": "^4.2.5",
"classnames": "^2.2.5",
"connected-react-router": "^4.3.0",
"core-js": "^2.5.7",
"csv": "^2.0.0",
"file-saver": "^1.3.8",
"lodash.orderby": "^4.6.0",
"moment": "^2.22.0",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-dropzone": "^4.2.8",
"react-ellipsis-with-tooltip": "^1.0.7",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"redux-form-validators": "^2.4.3",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2",
"sortabular": "^1.5.1",
"table-resolver": "^3.2.0",
"urijs": "^1.19.0",
"utf8": "^3.0.0",
"uuid": "^3.2.1",
"yup": "^0.24.1"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./.jest-setup.js",
"./localStorageMock.js"
],
"moduleNameMapper": {
"^.+\\.(png|gif|css|scss)$": "identity-obj-proxy"
},
"globals": {
"API": {}
},
"testURL": "http://localhost"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120
},
"license": "Apache-2.0"
}