-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.58 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
{
"name": "email-contact",
"version": "0.1.0",
"private": true,
"homepage": "https://edmondchuihw.github.io/email-contact",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"classnames": "^2.2.6",
"core-js": "^3.1.3",
"firebase": "^7.14.1",
"prop-types": "^15.7.2",
"query-string": "^6.6.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-device-detect": "^1.6.2",
"react-dom": "^16.8.6",
"react-firebaseui": "^4.1.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"use-debounce": "^2.1.0"
},
"scripts": {
"start": "HTTPS=true react-scripts start",
"start:ci": "REACT_APP_ADDRESS_SERVER_HOST=https://address2contact.herokuapp.com BROWSER=none react-scripts start",
"build": "react-scripts build",
"lint": "eslint ./src",
"test": "npm-run-all lint test:units test:e2e",
"test:ci": "CI=true npm-run-all lint test:units:junit test:e2e:ci",
"test:units": "react-scripts test",
"test:units:junit": "npm run test:units -- --reporters=default --reporters=jest-junit",
"test:e2e": "npm run cy:run",
"test:e2e:watch": "cypress open",
"test:e2e:ci": "start-server-and-test start:ci http://localhost:3000 report",
"delete:reports": "rm cypress/results/* || true",
"prereport": "npm run delete:reports",
"report": "npm run cy:run:ci",
"cy:run": "cypress run",
"cy:run:ci": "npm run cy:run -- --config baseUrl=http://localhost:3000 --reporter mocha-multi-reporters --reporter-options configFile=reporter-config.json",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/request-promise-native": "^1.0.16",
"cypress": "^3.8.2",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react": "^7.13.0",
"firebase-mock": "^2.3.2",
"gh-pages": "^2.0.1",
"jest-dom": "^3.5.0",
"jest-junit": "^6.4.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.23.0",
"mocha-multi-reporters": "^1.1.7",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^16.13.1",
"react-testing-library": "^6.1.2",
"start-server-and-test": "^1.9.1"
}
}