-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
41
42
43
44
45
46
47
{
"name": "reci",
"private": true,
"description": "Personal recipe collection",
"version": "0.1.0",
"author": "Jakub Kottnauer <[email protected]>",
"dependencies": {
"gatsby": "^4.14.1",
"gatsby-background-image": "^1.6.0",
"gatsby-plugin-image": "^2.14.1",
"gatsby-plugin-manifest": "^4.14.0",
"gatsby-plugin-offline": "^5.14.1",
"gatsby-plugin-react-helmet": "^5.14.0",
"gatsby-plugin-sass": "5.14.0",
"gatsby-plugin-sharp": "^4.14.1",
"gatsby-plugin-typography": "^4.14.0",
"gatsby-source-filesystem": "^4.14.0",
"gatsby-transformer-remark": "^5.14.0",
"gatsby-transformer-sharp": "^4.14.0",
"ramda": "^0.28.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.1.0",
"react-typography": "^0.16.19",
"remark-html": "^15.0.1",
"styled-components": "^5.2.1",
"typography": "^0.16.21"
},
"devDependencies": {
"gatsby-plugin-robots-txt": "^1.7.1",
"gh-pages": "^4.0.0",
"prettier": "^2.6.2",
"sass": "^1.52.1"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"deploy": "gatsby build && gh-pages -d public"
}
}