forked from cypress-io/cypress-example-todomvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1016 Bytes
/
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-example-todomvc-noble-prog",
"version": "1.0.0",
"description": "This repo contains an example React App, with the tests written in Cypress",
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"dev": "run-p --race start:ci cypress:open",
"start": "http-server -p 8888 -c-1",
"test": "npm run start & cypress run",
"lint": "eslint --fix cypress/integration cypress/support js",
"types": "tsc --noEmit",
"e2e": "cypress run"
},
"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.4.0",
"cypress-axe": "0.9.1",
"eslint": "6.8.0",
"eslint-plugin-cypress-dev": "3.0.0",
"eslint-plugin-mocha": "5.3.0",
"npm-run-all": "4.1.5",
"typescript": "3.9.7"
}
}