-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.14 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "pwener-blog",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown",
"version": "0.0.1",
"author": "Phelipe Wener <[email protected]>",
"dependencies": {
"@fontsource/merriweather-sans": "^4.5.11",
"@fontsource/montserrat": "^4.5.14",
"@react-icons/all-files": "^4.1.0",
"gatsby": "^4.1.2",
"gatsby-plugin-feed": "^3.15.0",
"gatsby-plugin-google-analytics": "^3.15.0",
"gatsby-plugin-image": "^1.15.0",
"gatsby-plugin-manifest": "^3.15.0",
"gatsby-plugin-offline": "^4.15.0",
"gatsby-plugin-react-helmet": "^4.15.0",
"gatsby-plugin-sharp": "^3.15.0",
"gatsby-remark-copy-linked-files": "^4.12.0",
"gatsby-remark-images": "^6.1.1",
"gatsby-remark-prismjs": "^5.12.0",
"gatsby-remark-responsive-iframe": "^4.12.0",
"gatsby-remark-smartypants": "^4.12.0",
"gatsby-source-filesystem": "^3.15.0",
"gatsby-transformer-remark": "^5.1.1",
"gatsby-transformer-sharp": "^3.15.0",
"prismjs": "^1.29.0",
"rc-progress": "^3.4.1",
"react": "^17.0.2",
"react-burger-menu": "^3.0.9",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.5.2",
"@types/react-burger-menu": "^2.8.3",
"@types/react-test-renderer": "^17.0.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-jest": "^27.5.1",
"babel-preset-gatsby": "^1.15.0",
"enzyme": "^3.11.0",
"gh-pages": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"prettier": "2.4.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.5"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/pwener/pwener.github.io.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"deploy": "gatsby clean && gatsby build --prefix-paths && gh-pages -d public"
}
}