-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "Gatsby example site with Cypress E2E tests and code coverage",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "cypress test",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "NODE_ENV=develop start-test develop 8000 cy:open"
},
"dependencies": {
"gatsby": "^2.26.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@cypress/code-coverage": "3.8.5",
"babel-plugin-istanbul": "6.0.0",
"babel-preset-gatsby": "0.8.0",
"cypress": "6.0.1",
"prettier": "2.1.2",
"start-server-and-test": "1.11.6"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}