forked from cypress-io/cypress-example-todomvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.54 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
{
"private": true,
"name": "cypress-example-todomvc",
"version": "0.0.0-development",
"description": "This repo contains an example React App, with the tests written in Cypress",
"scripts": {
"cypress:version": "cypress version",
"cypress:verify": "cypress verify",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:run:record": "cypress run --record",
"cypress:run:chrome": "cypress run --browser chrome",
"cypress:run:headed": "cypress run --headed",
"dev": "run-p --race start:ci cypress:open",
"start": "http-server -p 8888 -c-1",
"start:ci": "http-server -p 8888 -c-1 --silent",
"test": "npm run start & cypress run",
"test:ci": "run-p --race start:ci cypress:run",
"test:ci:record": "run-p --race start:ci cypress:run:record",
"test:ci:chrome": "run-p --race start:ci cypress:run:chrome",
"test:ci:headed": "run-p --race start:ci cypress:run:headed",
"lint": "eslint --fix cypress/*/*.js",
"effective:circle:config": "circleci config process circle.yml | sed /^#/d",
"types": "tsc --noEmit"
},
"dependencies": {
"director": "1.2.8",
"http-server": "0.11.1",
"react": "0.13.3",
"todomvc-app-css": "github:cypress-io/todomvc-app-css#a9d4ea1",
"todomvc-common": "cypress-io/todomvc-common#88b7c6359ad4a5097312d8b2a21dd539ce9f4446"
},
"devDependencies": {
"cypress": "3.4.1",
"eslint": "6.0.1",
"eslint-plugin-cypress-dev": "3.0.0",
"eslint-plugin-mocha": "5.3.0",
"npm-run-all": "4.1.5",
"typescript": "3.5.2"
}
}