-
Notifications
You must be signed in to change notification settings - Fork 505
/
package.json
52 lines (52 loc) · 1.92 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
{
"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": {
"build": "cross-env ./node_modules/typescript/bin/tsc -p ./js/ && node ./node_modules/browserify/bin/cmd ./js/app.js -o ./js/bundle.js",
"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 cypress:open",
"start": "npm run build & npm run serve",
"serve": "node ./serve.js",
"test": "npm run start & cypress run",
"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:headed": "run-p --race start cypress:run:headed",
"lint": "eslint --fix cypress/e2e cypress/support",
"effective:circle:config": "circleci config process circle.yml | sed /^#/d",
"types": "tsc --noEmit",
"e2e": "cypress run"
},
"dependencies": {
"@types/classnames": "^2.2.6",
"@types/react": "^16.7.0",
"@types/react-dom": "^16.0.11",
"classnames": "^2.2.6",
"director": "^1.2.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"todomvc-app-css": "^2.0.0",
"todomvc-common": "cypress-io/todomvc-common#88b7c6359ad4a5097312d8b2a21dd539ce9f4446"
},
"devDependencies": {
"axe-core": "4.10.2",
"browserify": "^16.2.3",
"cross-env": "7.0.3",
"cypress": "13.15.2",
"cypress-axe": "1.5.0",
"eslint": "7.32.0",
"eslint-plugin-cypress-dev": "3.0.0",
"eslint-plugin-mocha": "5.3.0",
"node-static": "^0.7.11",
"npm-run-all": "4.1.5",
"typescript": "5.5.4"
}
}