-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 767 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 767 Bytes
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
{
"name": "martinlocklear.com",
"private": true,
"description": "A personal website for Martin Locklear",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"gatsby": "^2.19.45",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-react-helmet": "^3.2.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"typeface-open-sans": "0.0.75",
"typeface-roboto": "0.0.75"
},
"devDependencies": {
"prettier": "^1.19.1"
}
}