forked from mdcruz/cypress-testing-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "cypress-testing-workshop",
"version": "1.0.0",
"description": "A Cypress testing workshop complete with application and exercise tests",
"main": "index.js",
"scripts": {
"test": "cypress run --spec 'cypress/integration/06-ci/*'",
"posttest": "npm run --prefix todomvc reset:db",
"cy:open": "cypress open",
"cy:run": "cypress run",
"start": "npm start --prefix todomvc -- --quiet",
"ci": "start-test 3001",
"dev": "start-test 3001 cy:open",
"postinstall": "cd todomvc && npm install",
"reset": "npm run reset --prefix todomvc",
"format": "eslint --fix 'cypress/**/*.js'",
"lint": "eslint 'cypress/**/*.js'",
"slides:dev": "vite",
"slides:build": "vite build"
},
"keywords": [],
"author": "Marie Drake",
"license": "ISC",
"devDependencies": {
"@cypress/code-coverage": "3.9.5",
"cypress": "6.8.0",
"cypress-mochawesome-reporter": "2.0.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-prettier": "3.1.2",
"highlight.js": "10.7.2",
"http-server": "0.12.0",
"mocha": "6.2.2",
"mocha-junit-reporter": "1.23.3",
"mocha-multi-reporters": "1.1.7",
"mochawesome": "6.2.2",
"mochawesome-merge": "4.2.0",
"mochawesome-report-generator": "5.2.0",
"prettier": "2.2.1",
"reveal.js": "4.1.0",
"start-server-and-test": "1.12.1",
"vite": "2.1.5"
},
"engines": {
"node": ">=12"
}
}