-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 KB
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": "hipsta-coding-web",
"private": true,
"description": "Our humble website",
"version": "0.1.0",
"author": "Alexey Smirnov <alexei.smirnov018@gmail.com>",
"dependencies": {
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "1.6.22",
"@svgr/webpack": "5.5.0",
"gatsby": "4.11.1",
"gatsby-image": "2.11.0",
"highlight.js": "10.7.3",
"normalize.css": "8.0.1",
"polished": "4.1.3",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-spring": "8.0.27",
"reveal.js": "4.3.0",
"sass": "1.44.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"babel-plugin-styled-components": "1.13.3",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-standard": "4.1.0",
"gatsby-plugin-gtag": "1.0.13",
"gatsby-plugin-manifest": "4.11.1",
"gatsby-plugin-mdx": "3.11.1",
"gatsby-plugin-offline": "5.11.1",
"gatsby-plugin-react-helmet": "5.11.0",
"gatsby-plugin-sass": "5.11.1",
"gatsby-plugin-sharp": "4.11.1",
"gatsby-plugin-sitemap": "5.11.1",
"gatsby-plugin-split-css": "2.0.0",
"gatsby-plugin-styled-components": "5.11.0",
"gatsby-plugin-svgr": "3.0.0-beta.0",
"gatsby-remark-images": "6.11.1",
"gatsby-source-filesystem": "4.11.1",
"gatsby-transformer-sharp": "4.11.0",
"gh-pages": "3.2.3",
"lint-staged": "10.5.4",
"node-html-to-image": "3.2.0",
"prettier": "2.5.0"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build && gh-pages -d public"
}
}