forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.43 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "cypress-example-recipes",
"version": "0.0.0",
"description": "This repo contains various recipes for testing common scenarios in your application using Cypress.",
"main": "index.js",
"engines": {
"node": "11.6.0"
},
"scripts": {
"cypress:version": "cypress version",
"cypress:verify": "cypress verify",
"start": "echo Call npm start from each example subfolder! && exit -1",
"stop-only": "stop-only --folder examples --skip node_modules",
"warn-only": "stop-only --warn --folder examples --skip node_modules",
"test:ci": "node ./test-examples",
"test:ci:windows": "node ./test-examples --windows",
"test:ci:chrome": "node ./test-examples --chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress-example-recipes.git"
},
"author": "Brian Mann",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/cypress-example-recipes/issues"
},
"homepage": "https://github.com/cypress-io/cypress-example-recipes#readme",
"dependencies": {
"body-parser": "1.18.2",
"chai-colors": "1.0.1",
"chai-date-string": "0.1.0",
"chai-enzyme": "1.0.0-beta.1",
"chalk": "2.3.1",
"classnames": "2.2.6",
"cors": "2.8.5",
"cross-env": "5.2.0",
"csurf": "1.9.0",
"debug": "3.1.0",
"dragula": "3.7.2",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"execa": "0.11.0",
"express": "4.16.2",
"express-jwt": "5.3.1",
"express-session": "1.15.6",
"hbs": "4.0.1",
"http-server": "0.11.1",
"jquery": "3.4.0",
"json-server": "0.14.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.13",
"minimist": "1.2.0",
"morgan": "1.9.1",
"prop-types": "15.6.2",
"react": "16.4.0",
"react-dom": "16.2.1",
"react-redux": "5.1.0",
"redux": "4.0.1",
"reselect": "4.0.0",
"rootpath": "0.1.2",
"todomvc-app-css": "2.1.2",
"vue": "2.6.10",
"vue-router": "3.0.6",
"vuex": "3.1.1"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "2.1.1",
"@cypress/snapshot": "2.1.3",
"@cypress/webpack-preprocessor": "4.1.0",
"@medv/finder": "1.1.1",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"arg": "4.1.0",
"axe-core": "3.2.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"bluebird": "3.5.5",
"console.table": "0.10.0",
"cypress": "3.4.0",
"cypress-axe": "0.5.1",
"cypress-failed-log": "2.5.1",
"cypress-file-upload": "3.3.2",
"cypress-pipe": "1.4.0",
"cypress-plugin-snapshots": "1.2.6",
"cypress-react-unit-test": "2.4.3",
"cypress-select-tests": "1.3.0",
"cypress-wait-until": "1.2.3",
"eslint": "6.0.1",
"eslint-plugin-cypress-dev": "2.1.0",
"eslint-plugin-mocha": "5.0.0",
"fs-extra": "7.0.1",
"glob": "7.1.4",
"globby": "9.1.0",
"html-webpack-plugin": "3.2.0",
"json-server-reset": "1.0.0",
"nodemon": "1.18.11",
"npm-run-all": "4.1.5",
"pluralize": "7.0.0",
"pretty-ms": "3.2.0",
"react-scripts": "2.1.0",
"react-testing-library": "6.0.0",
"start-server-and-test": "1.7.14",
"stop-only": "3.0.1",
"terminal-banner": "1.1.0",
"ts-loader": "4.5.0",
"tsify": "4.0.0",
"tslint": "5.9.1",
"typescript": "3.3.3",
"vue-loader": "14.2.4",
"vue-template-compiler": "2.6.10",
"wait-on": "3.2.0",
"webpack": "4.29.6",
"webpack-cli": "3.3.3",
"webpack-dev-server": "3.7.1"
}
}