-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "indiefilms-plugin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.2.0",
"axios": "^0.19.0",
"iso-639-1": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-global-state": "^0.14.0",
"react-loading-skeleton": "^1.1.2",
"react-loads": "^8.3.3",
"react-scripts": "3.0.1",
"redux": "^4.0.4",
"styled-components": "^4.3.2",
"styled-system": "^5.0.12"
},
"devDependencies": {
"cypress": "^3.2.0",
"cypress-cucumber-preprocessor": "^1.14.0",
"cypress-dark": "^1.7.11",
"cypress-eslint-preprocessor": "^1.2.2",
"cypress-react-unit-test": "^2.4.1",
"cypress-testing-library": "^2.4.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-cucumber": "^1.2.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-react-hooks": "^1.6.1",
"react-hooks-testing-library": "^0.6.0",
"react-testing-library": "^7.0.0",
"redux-logger": "^3.0.6"
},
"scripts": {
"eslint": "eslint \"**/*.js\" --ignore-pattern node_modules/",
"start": "react-scripts start",
"watch": "react-scripts start",
"test:bdd": "./node_modules/.bin/cypress-tags run -e TAGS='@focus'",
"test:run": "./node_modules/.bin/cypress run",
"test": "./node_modules/.bin/cypress run",
"test:open": "./node_modules/.bin/cypress open",
"build": "react-scripts build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}