forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
154 lines (154 loc) · 4.55 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"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",
"scripts": {
"cypress:verify": "cypress verify",
"cypress:version": "cypress version",
"lint": "eslint examples",
"lint:json": "eslint --ext .json examples",
"start": "echo Call npm start from each example subfolder!",
"stop-only": "stop-only --folder examples --skip node_modules --skip dist --skip .cache --skip build",
"test:ci": "node ./test-examples",
"test:ci:brave": "node ./test-examples --brave",
"test:ci:chrome": "node ./test-examples --chrome",
"test:ci:chrome:headless": "node ./test-examples --chrome --headless",
"test:ci:firefox": "node ./test-examples --firefox",
"test:ci:windows": "node ./test-examples --windows",
"warn-only": "stop-only --warn --folder examples --skip node_modules"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.26",
"@fortawesome/free-solid-svg-icons": "5.12.0",
"@fortawesome/react-fontawesome": "0.1.8",
"babel-register": "6.26.0",
"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": "2.0.4",
"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",
"react-tooltip": "3.11.1",
"redux": "4.0.1",
"reselect": "4.0.0",
"rootpath": "0.1.2",
"serve": "11.2.0",
"todomvc-app-css": "2.1.2",
"vue": "2.6.10",
"vue-router": "3.0.6",
"vuex": "3.1.1"
},
"devDependencies": {
"@babel/preset-flow": "7.0.0",
"@cypress/browserify-preprocessor": "2.1.4",
"@cypress/eslint-plugin-dev": "5.0.0",
"@cypress/skip-test": "2.5.0",
"@cypress/snapshot": "2.1.7",
"@cypress/webpack-preprocessor": "4.1.2",
"@medv/finder": "1.1.2",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.7",
"arg": "4.1.1",
"axe-core": "3.2.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"bluebird": "3.5.5",
"check-more-types": "2.24.0",
"chrome-remote-interface": "0.28.1",
"console.table": "0.10.0",
"cy-spok": "1.3.1",
"cypress": "4.0.2",
"cypress-axe": "0.5.3",
"cypress-expect-n-assertions": "1.0.0",
"cypress-failed-log": "2.6.1",
"cypress-file-upload": "3.5.3",
"cypress-iframe": "1.0.1",
"cypress-pipe": "1.6.1",
"cypress-plugin-snapshots": "1.2.9",
"cypress-react-unit-test": "2.4.3",
"cypress-select-tests": "1.5.2",
"cypress-wait-until": "1.6.1",
"eslint": "6.0.1",
"eslint-plugin-json-format": "2.0.1",
"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",
"husky": "4.0.0",
"json-server-reset": "1.0.0",
"lazy-ass": "1.6.0",
"lint-staged": "9.5.0",
"neat-csv": "5.1.0",
"nodemon": "1.18.11",
"npm-run-all": "4.1.5",
"pluralize": "7.0.0",
"pretty-ms": "3.2.0",
"react-scripts": "3.3.0",
"react-testing-library": "6.0.0",
"start-server-and-test": "1.10.6",
"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"
},
"engines": {
"node": "11.6.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress-example-recipes.git"
},
"homepage": "https://github.com/cypress-io/cypress-example-recipes#readme",
"author": "Brian Mann",
"bugs": {
"url": "https://github.com/cypress-io/cypress-example-recipes/issues"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"eslint --ext .json --fix",
"git add"
]
}
}