This repository has been archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
63 lines (63 loc) · 1.93 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-example-todomvc-redux",
"version": "1.0.0",
"description": "Example TodoMVC with full e2e test code coverage",
"main": "index.js",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "start-test 1234 cypress:run",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:verify": "cypress verify",
"start": "cross-env NODE_ENV=test parcel serve --no-cache public/index.html",
"dev": "cross-env NODE_ENV=test start-test 1234 cypress:open",
"report:coverage": "nyc report --reporter=html",
"report:coverage:text": "nyc report --reporter=text",
"report:coverage:summary": "nyc report --reporter=text-summary",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress-example-todomvc-redux.git"
},
"keywords": [
"cypress",
"cypress-example",
"code-coverage"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/cypress-example-todomvc-redux/issues"
},
"homepage": "https://github.com/cypress-io/cypress-example-todomvc-redux#readme",
"devDependencies": {
"@babel/core": "7.22.17",
"@babel/preset-react": "7.22.15",
"@cypress/code-coverage": "^3.10.0",
"babel-loader": "8.3.0",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"cypress": "13.1.0",
"cypress-react-unit-test": "4.17.2",
"istanbul-lib-coverage": "3.2.2",
"parcel-bundler": "1.12.5",
"start-server-and-test": "1.15.4",
"webpack": "^5.75.0"
},
"dependencies": {
"classnames": "2.3.2",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "8.1.3",
"redux": "4.2.1",
"reselect": "4.1.8",
"todomvc-app-css": "2.4.3"
}
}