-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.37 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
{
"name": "react-hooks-starter-botbotdotdotcom",
"version": "0.1.0",
"homepage": ".",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@testing-library/cypress": "^5.0.2",
"history": "4.10.1",
"prop-types": "15.7.2",
"raven-js": "3.27.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "5.1.2",
"react-router-hash-link": "1.2.2",
"react-scripts": "^3.3.0",
"styled-components": "4.4.1",
"styled-system": "4.2.4",
"typescript": "^3.7.4"
},
"devDependencies": {
"@testing-library/cypress": "^5.0.2",
"@testing-library/dom": "^6.10.1",
"cypress": "^3.7.0",
"cypress-cucumber-preprocessor": "^1.18.0",
"cypress-dark": "^1.7.14",
"cypress-eslint-preprocessor": "^1.2.2",
"cypress-react-unit-test": "^2.4.3",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-cypress": "^2.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react-hooks": "^2.3.0",
"react-testing-library": "7.0.1"
},
"scripts": {
"cypress:run": "./node_modules/.bin/cypress run",
"cypress:open": "./node_modules/.bin/cypress open",
"deploy:test": "yarn build && netlify deploy --prod",
"deploy": "netlify deploy",
"docker:build": "docker build . -t tgrrr/cra-docker",
"docker:publish": "docker image push $npm_package_config_imageRepo:$npm_package_version",
"docker:pull": "docker pull tgrrr/cra-docker:latest",
"predocker:run": "echo \"\\x1b[104m\\x1b[97m\n[ you can now open this in your browser at localhost:8080 ]\n\\x1b[0m\"",
"docker:run": "docker run -p 8080:80 tgrrr/cra-docker",
"postdocker:run": "echo \"\\x1b[104m\\x1b[97m\n[ And... closed ]\n\\x1b[0m\"",
"setup:docker": "npm run docker:pull",
"start:docker": "npm run docker:run",
"start": "react-scripts start",
"watch": "react-scripts start",
"test": "npm run cypress:run",
"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
}
}