-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 968 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
34
35
{
"name": "greatgobbler",
"version": "0.1.0",
"author": "Craig Hammond <craig@craighammond.me>",
"dependencies": {
"gatsby": "^5.13.7",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
},
"scripts": {
"build": "cross-env GATSBY_GIT_SHA=`git rev-parse --short HEAD` gatsby build",
"develop": "cross-env GATSBY_GIT_SHA=`git rev-parse --short HEAD` gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/crammond/greatgobbler"
}
}