This repository has been archived by the owner on Jul 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "MiqExperimentalUI",
"version": "0.0.0",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:current": "jest --watch",
"format":
"prettier --single-quote --trailing-comma es5 --write 'app/javascript/**/*.js' '*.{js,json}'",
"build": "yarn run format && yarn run lint",
"stylelint": "stylelint 'app/**/*.scss'",
"lint": "eslint --fix app/javascript || exit 0"
},
"devDependencies": {
"babel-jest": "^22.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"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-react": "^6.24.1",
"enzyme": "^3.2.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-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.6",
"jest-cli": "^22.0.0",
"prettier": "^1.9.2",
"react-test-renderer": "^16.2.0",
"stylelint": "^9.0.0",
"stylelint-config-standard": "^18.0.0"
},
"dependencies": {
"cx": "^18.1.11",
"patternfly": "^3.32.1",
"patternfly-react": "^1.6.0",
"react": "^16.2.0",
"react-bootstrap": "^0.32.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
},
"jest": {
"setupFiles": ["raf/polyfill", "./.jest-setup.js"]
},
"license": "Apache-2.0"
}