forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.64 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
{
"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": ">=4.0.0"
},
"scripts": {
"cypress:version": "cypress version",
"cypress:verify": "cypress verify",
"cypress:open": "cypress open --global",
"cypress:run": "node ./scripts/run.js",
"cypress:run:record": "node ./scripts/run.js --record",
"cypress:run:chrome": "node ./scripts/run.js --browser chrome",
"cypress:run:chrome:record": "node ./scripts/run.js --browser chrome --record",
"test:ci": "run-p --race start cypress:run",
"test:ci:record": "run-p --race start cypress:run:record",
"test:ci:chrome": "run-p --race start cypress:run:chrome",
"test:ci:chrome:record": "run-p --race start cypress:run:chrome:record",
"start": "node ./scripts/start.js",
"dev": "nodemon ./scripts/start.js --watch examples",
"stop-only": "stop-only examples",
"lint:js": "eslint --fix scripts/*.js"
},
"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.15.2",
"chai-colors": "^1.0.1",
"chai-date-string": "^0.1.0",
"chai-enzyme": "1.0.0-beta.0",
"chalk": "^2.2.0",
"csurf": "^1.9.0",
"dragula": "^3.7.2",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"execa": "^0.9.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"hbs": "^4.0.1",
"http-server": "^0.11.0",
"jquery": "^3.1.1",
"json-server": "^0.12.1",
"lodash": "^4.17.2",
"minimist": "^1.2.0",
"morgan": "^1.7.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "^1.0.0",
"@cypress/snapshot": "^2.0.1",
"@cypress/webpack-preprocessor": "^1.1.0",
"@types/chai": "4.1.2",
"@types/mocha": "^2.2.43",
"bluebird": "^3.5.1",
"cypress": "2.1.0",
"eslint": "^4.15.0",
"eslint-plugin-cypress-dev": "^1.1.2",
"eslint-plugin-mocha": "^4.11.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"json-server-reset": "^1.0.0",
"nodemon": "^1.15.0",
"npm-run-all": "^4.1.1",
"pretty-ms": "^3.0.1",
"stop-only": "^1.1.0",
"ts-loader": "^3.0.2",
"tsify": "^3.0.3",
"tslint": "^5.8.0",
"typescript": "2.6.2",
"webpack": "^4.0.0"
}
}