-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 869 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
{
"name": "gatsby-percy-cypress",
"version": "1.0.0",
"private": true,
"description": "gatsby-percy-cypress",
"author": "jonpitch",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run"
},
"dependencies": {
"gatsby": "^3.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@percy/cli": "^1.0.0-beta.47",
"@percy/cypress": "^3.0.0",
"@testing-library/cypress": "^7.0.5",
"cypress": "^7.0.1",
"start-server-and-test": "^1.12.1"
}
}