-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 864 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
{
"name": "galaumang.github.io",
"description": "Personal Website",
"version": "0.1.0",
"author": "Umang Gala",
"repository": {
"type": "git",
"url": "https://github.com/galaumang/galaumang.github.io"
},
"private": true,
"license": "GPL-3.0",
"scripts": {
"build": "gatsby build",
"deploy": "gh-pages -d public -b current -m '[gh-pages] deploying changes to github pages'",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"gatsby": "^4.18.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"gh-pages": "^4.0.0",
"prettier": "^2.7.1"
}
}