forked from jsdrupal/drupal-admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.95 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
{
"name": "vfancy",
"version": "0.1.0",
"license": "MIT",
"private": true,
"engines": {
"yarn": ">= 1.6",
"node": ">= 8.11"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"dependencies": {
"@material-ui/core": "^3.2.0",
"@material-ui/icons": "^3.0.1",
"deepmerge": "^2.1.1",
"downshift": "^2.0.16",
"emotion": "^9.0.2",
"history": "^4.7.2",
"interweave": "^8.0.2",
"jss": "^9.8.2",
"keycode": "^2.2.0",
"makecancelable": "^1.0.0",
"prop-types": "^15.6.1",
"qs": "^6.5.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-emotion": "^9.2.5",
"react-jss": "^8.4.0",
"react-redux": "^5.0.7",
"react-redux-loading-bar": "^3.1.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-rte": "^0.16.1",
"react-side-effect": "^1.1.5",
"react-sticky": "^6.0.2",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"@storybook/addon-knobs": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"babel-core": "^6.26.3",
"babel-eslint": "9.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react-app": "^3.1.2",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"chromedriver": "^2.40.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "5.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.4.0",
"jest-junit": "^3.6.0",
"mkdirp": "^0.5.1",
"nightwatch": "^0.9.21",
"prettier": "^1.11.1",
"react-axe": "^3.0.1",
"react-scripts": "2.0.3",
"react-test-renderer": "^16.3.0",
"redux-saga-test-plan": "^3.6.0",
"storybook-addon-jsx": "^5.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eslint": "eslint ./src --max-warnings=0 --fix",
"prettier": "prettier --write 'src/**/*.js'",
"jest": "react-scripts test --env=jsdom",
"nightwatch": "nightwatch --config ./src/tests/Nightwatch/nightwatch.conf.js",
"storybook": "start-storybook -p 9001 -c .storybook",
"// Test commands for the CI": "⬅✌➡",
"test": "yarn test:lint && yarn test:unit && yarn test:functional",
"test:functional": "yarn nightwatch",
"test:unit": "CI=true JEST_JUNIT_OUTPUT=reports/jest-junit.xml react-scripts test --testResultsProcessor ./node_modules/jest-junit --env=jsdom",
"test:lint": "eslint ./src --max-warnings=0 --format junit -o reports/eslint-junit.xml",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}