forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.44 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
{
"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 examples"
},
"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",
"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.10.0",
"express": "4.16.2",
"express-session": "1.15.6",
"hbs": "4.0.1",
"http-server": "0.11.1",
"jquery": "3.3.1",
"json-server": "0.13.0",
"lodash": "4.17.5",
"minimist": "1.2.0",
"morgan": "1.9.0",
"prop-types": "15.6.2",
"react": "16.4.0",
"react-dom": "16.2.0",
"react-redux": "5.1.0",
"redux": "4.0.1",
"reselect": "4.0.0",
"todomvc-app-css": "2.1.2"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "1.0.2",
"@cypress/snapshot": "2.0.1",
"@cypress/webpack-preprocessor": "2.0.1",
"@medv/finder": "1.1.1",
"@types/chai": "4.1.3",
"@types/mocha": "5.2.5",
"babel-loader": "8.0.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"bluebird": "3.5.1",
"cypress": "3.1.5",
"cypress-pipe": "1.3.1",
"cypress-plugin-snapshots": "1.1.2",
"eslint": "5.4.0",
"eslint-plugin-cypress-dev": "1.1.2",
"eslint-plugin-mocha": "5.0.0",
"fs-extra": "6.0.1",
"glob": "7.1.2",
"json-server-reset": "1.0.0",
"nodemon": "1.17.5",
"npm-run-all": "4.1.2",
"pretty-ms": "3.2.0",
"react-scripts": "2.1.0",
"stop-only": "1.1.0",
"ts-loader": "4.5.0",
"tsify": "4.0.0",
"tslint": "5.9.1",
"typescript": "2.9.2",
"wait-on": "3.2.0",
"webpack": "4.10.2"
}
}