This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "@cypress/instrument-cra",
"version": "0.0.0-development",
"description": "Little module for CRA applications to instrument code without ejecting react-scripts",
"main": "index.js",
"scripts": {
"test": "cypress run",
"start": "react-scripts -r . start",
"cy:open": "cypress open",
"dev": "start-test 3000 cy:open",
"e2e": "start-test 3000",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/instrument-cra.git"
},
"files": [
"index.js"
],
"keywords": [
"cra",
"react-scripts",
"istanbul"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/instrument-cra/issues"
},
"homepage": "https://github.com/cypress-io/instrument-cra#readme",
"dependencies": {
"babel-plugin-istanbul": "6.0.0",
"debug": "4.2.0",
"find-yarn-workspace-root": "^2.0.0"
},
"devDependencies": {
"@cypress/code-coverage": "3.4.2",
"check-code-coverage": "1.10.0",
"cypress": "6.5.0",
"prettier": "2.1.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-scripts": "3.3.1",
"semantic-release": "17.2.1",
"start-server-and-test": "1.11.5"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nyc": {
"all": true,
"exclude": "src/serviceWorker.js"
}
}