-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1 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": "justinperez.com",
"description": "Justin's Workfolio: Personal Website",
"version": "1.0.0",
"author": "Justin Perez",
"dependencies": {
"gatsby": "^2.23.7",
"gatsby-plugin-manifest": "^2.4.12",
"gatsby-plugin-offline": "^3.2.11",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sass": "^2.1.28",
"node-sass": "^4.13.1",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"react-helmet": "^5.2.1",
"styled-components": "^5.1.0"
},
"keywords": [
"gatsby",
"node-sass",
"scss",
"react"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"format": "prettier --write '**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"gh-pages": "^2.2.0",
"prettier": "^1.18.2"
},
"repository": {
"type": "git",
"url": "https://jaayperez.github.io/justinperez.com/"
}
}