-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "party-check",
"homepage": "http://changednameto.github.io/PartyCheck",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"request-promise": "^4.2.5",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"string-template": "^1.0.0",
"wait-on": "^4.0.2"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"coverage": "nyc npm run cypress:run --record",
"coverage:report": "nyc report --reporter=text-lcov | coveralls",
"coverage:instrument": "npx nyc instrument src instrumented",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run:record": "cypress run --record --key ed0df24f-8471-4f0f-8012-e26d33bc0430"
},
"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"
]
},
"devDependencies": {
"@cypress/code-coverage": "^3.1.0",
"@cypress/instrument-cra": "^1.1.0",
"coveralls": "^3.0.11",
"cypress": "^4.3.0",
"eslint-plugin-cypress": "^2.10.3",
"gh-pages": "^2.2.0",
"nyc": "^15.0.1",
"start-server-and-test": "^1.10.11"
}
}