forked from ManageIQ/manageiq-v2v
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.94 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
{
"name": "miq_v2v_ui",
"version": "0.0.0",
"scripts": {
"test": "npm run lint && jest",
"test:watch": "jest --watchAll",
"test:current": "jest --watch",
"prettier": "prettier --single-quote --trailing-comma=none --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-mock-adapter": "^1.10.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"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-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.0",
"eslint": "^4.14.0",
"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.7.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "~2.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.6",
"jest-cli": "^22.0.0",
"prettier": "^1.9.2",
"prettier-eslint": "^8.8.1",
"react-test-renderer": "^16.2.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0"
},
"dependencies": {
"axios": "^0.17.1",
"bootstrap-select": "^1.12.4",
"classnames": "^2.2.5",
"csv": "^2.0.0",
"cx": "^18.1.11",
"intl": "~1.2.5",
"jquery": "^3.3.1",
"moment": "^2.20.1",
"numeral": "^2.0.6",
"patternfly": "^3.35.1",
"patternfly-react": "^1.11.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-bootstrap": "^0.31.5",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.8",
"react-equalizer": "^1.3.0",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-form": "^7.2.3",
"redux-form-validators": "^2.3.2",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2",
"urijs": "^1.19.0"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./.jest-setup.js"
],
"moduleNameMapper": {
"^.+\\.(png|gif|css|scss)$": "identity-obj-proxy"
}
},
"license": "Apache-2.0"
}