-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"private": true,
"name": "cypress-workshop",
"version": "1.0.0",
"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",
"start": "http-server -p 8000 -c-1",
"lint": "eslint --fix cypress/integration/*.js cypress/support/*.js cypress/plugins/*.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.14.0",
"todomvc-app-css": "2.3.0",
"todomvc-common": "cypress-io/todomvc-common#88b7c6359ad4a5097312d8b2a21dd539ce9f4446"
},
"devDependencies": {
"axe-core": "3.3.2",
"cypress": "3.5.0",
"cypress-axe": "0.5.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"
}
}