-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "gatsby-starter-dimension-v2",
"description": "Gatsby Starter - Dimension V2",
"version": "1.0.0",
"author": "Hunter Chang",
"dependencies": {
"@types/react-helmet": "^5.0.14",
"axios": "^0.21.1",
"gatsby": "^2.24.53",
"gatsby-plugin-google-analytics": "^2.1.25",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.14",
"gatsby-plugin-sass": "^2.1.21",
"gatsby-plugin-typescript": "^2.1.16",
"gh-pages": "^2.1.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"sass": "^1.32.12"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "rm -R ./public; gatsby build --prefix-paths && cp ./CNAME ./public",
"deploy": "npm run build && gh-pages -d public -b gh-pages",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.js\" \"**/*.scss\" \"**/*.css\" --ignore-path .gitignore",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}