Files
explorer.fullstack.cash/package.json
T
GatsbyJS Bot 1e2bdca9a4 chore(*): replace gatsby.app with gatsby.dev (#12153)
## Description

Replace gatsby.app with gatsby.dev

Command used to find all files:

```
grep -rl 'gatsby\.app' --exclude-dir=.git --exclude-dir=.idea --exclude-dir=node_modules .
```

Command used to replace files:

```
grep -rl 'gatsby\.app' --exclude-dir=.git --exclude-dir=.idea --exclude-dir=node_modules ./ | xargs sed -i 's/gatsby.app/gatsby.dev/g'
```

## Related Issues
Fixes #12152
2019-02-27 20:12:44 +00:00

31 lines
770 B
JSON

{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"gatsby": "^2.1.18",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"devDependencies": {
"prettier": "^1.16.4"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}