-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.36 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "stackcheats-blog-engine",
"private": true,
"description": "A Personal Blog Platform of Athiththan Kathirgamasegaran",
"version": "0.1.0",
"author": "Athiththan Kathirgamasegeran (@athiththan11)",
"bugs": {
"url": "https://github.com/stackcheats/stackcheats.github.io/issues"
},
"engines": {
"node": "12.16.2"
},
"dependencies": {
"@code-surfer/standalone": "^3.1.1",
"@icons-pack/react-simple-icons": "^2.8.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mdx-js/tag": "^0.20.3",
"dotenv": "^9.0.1",
"firebase": "^8.6.1",
"gatsby": "^2.32.13",
"gatsby-awesome-pagination": "^0.3.8",
"gatsby-image": "^2.11.0",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-google-analytics": "^2.11.0",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-mdx": "^1.10.1",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-robots-txt": "^1.6.2",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-sitemap": "^4.1.0",
"gatsby-plugin-theme-ui": "^0.3.5",
"gatsby-plugin-typography": "^2.12.0",
"gatsby-remark-autolink-headers": "^2.11.0",
"gatsby-remark-copy-linked-files": "^2.10.0",
"gatsby-remark-embed-gist": "^1.2.1",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-prismjs": "^3.8.0",
"gatsby-remark-responsive-iframe": "^2.11.0",
"gatsby-remark-slidify": "0.0.2",
"gatsby-remark-smartypants": "^2.10.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.12.1",
"lodash": "^4.17.21",
"mdx-utils": "^0.2.0",
"prism-react-renderer": "^0.1.5",
"prism-themes": "^1.7.0",
"prismjs": "^1.23.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-feather": "^2.0.9",
"react-helmet": "^5.2.0",
"react-live": "^2.2.3",
"react-typography": "^0.16.13",
"sc-firebase-comments": "^0.1.0",
"sc-ga-views": "^0.1.0",
"sc-remark-reveal-mutate": "^0.1.0",
"shell-quote": "^1.7.2",
"theme-ui": "^0.3.5",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typography": "^0.16.17",
"typography-theme-bootstrap": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19",
"use-spring": "^0.2.3"
},
"devDependencies": {
"bootstrap": "^4.6.0",
"eslint": "^6.2.2",
"eslint-plugin-react": "^7.23.2",
"node-sass": "^4.14.1",
"prettier": "^1.14.2"
},
"homepage": "https://github.com/stackcheats/stackcheats.github.io#readme",
"keywords": [
"stackcheats",
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/stackcheats/stackcheats.github.io"
},
"scripts": {
"start": "npm run develop",
"dev": "gatsby develop",
"develop": "gatsby develop",
"clean-dev": "gatsby clean && gatsby develop",
"build": "git submodule update --init --recursive && npm run format && gatsby build",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js",
"deploy:github": "npm run build && gh-pages -d public -b master",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
}
}