-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.63 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
{
"private": true,
"name": "pb-todo",
"version": "0.0.0-development",
"description": "This repo contains an example React App, and scafolding to write Cypress tests",
"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/integration cypress/support js",
"effective:circle:config": "circleci config process circle.yml | sed /^#/d",
"types": "tsc --noEmit",
"e2e": "cypress run",
"unit": "jest"
},
"dependencies": {
"director": "1.2.8",
"http-server": "0.12.3",
"react": "0.13.3",
"todomvc-app-css": "2.3.0",
"todomvc-common": "cypress-io/todomvc-common#88b7c6359ad4a5097312d8b2a21dd539ce9f4446"
},
"devDependencies": {
"axe-core": "3.5.5",
"cypress": "8.5.0",
"cypress-axe": "0.13.0",
"eslint": "6.8.0",
"eslint-plugin-cypress-dev": "3.0.0",
"eslint-plugin-mocha": "5.3.0",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"typescript": "3.9.7"
}
}