-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 952 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
{
"name": "yoga-posies",
"version": "1.0.0",
"private": true,
"description": "Yoga Website",
"repository": {
"type": "git",
"url": "https://github.com/klgh/yogaposies"
},
"license": "0BSD",
"author": "Kaleigh Scruggs <[email protected]>",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"serve": "gatsby serve",
"start": "gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"gatsby": "^5.13.7",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"prettier": "^3.3.3"
}
}