forked from gaearon/overreacted.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.3 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.3 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "cluelesscoders.com",
"private": true,
"engines": {
"node": "12.x"
},
"description": "Org Site and Blog",
"version": "1.0.0",
"author": "Kunal Mangaraj <mangaraj.kunal@gmail.com>",
"contributors": [
{
"name": "Engit Prabhat",
"email": "engitj@gmail.com"
},
{
"name": "Abhishek Kaushik",
"email": "dry@example.com"
}
],
"bugs": {
"url": "https://github.com/cluelesscoders/cluelesscoders.com/issues"
},
"homepage": "https://cluelesscoders.com",
"license": "MIT",
"dependencies": {
"babel-plugin-styled-components": "^1.10.7",
"bluebird": "^3.7.2",
"gatsby": "^2.21.37",
"gatsby-image": "^2.4.4",
"gatsby-plugin-catch-links": "^2.3.2",
"gatsby-plugin-ebook": "^1.0.2",
"gatsby-plugin-feed": "^2.5.2",
"gatsby-plugin-google-analytics": "^2.3.2",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "^2.4.5",
"gatsby-plugin-offline": "^3.2.3",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sharp": "^2.6.4",
"gatsby-plugin-styled-components": "^3.3.2",
"gatsby-plugin-typography": "^2.5.2",
"gatsby-remark-autolink-headers": "^2.3.3",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.3.7",
"gatsby-remark-prismjs": "^3.5.2",
"gatsby-remark-responsive-iframe": "^2.4.3",
"gatsby-remark-smartypants": "^2.3.2",
"gatsby-source-filesystem": "^2.3.7",
"gatsby-transformer-remark": "^2.8.12",
"gatsby-transformer-sharp": "^2.5.3",
"gatsby-transformer-yaml": "^2.4.2",
"glob": "^7.1.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.4",
"lodash": "^4.17.15",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"react-switch": "^5.0.1",
"react-typography": "^0.16.19",
"styled-components": "^5.1.0",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "2.0.5"
},
"keywords": [
"gatsby"
],
"scripts": {
"build": "npm run clean && gatsby build",
"develop": "npm run clean && gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby build && gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"js-to-jsx": "node src/utils/js-to-jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/cluelesscoders/cluelesscoders.com"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{gatsby-*.js,src/**/*.{js,jsx,json,css}}": [
"npm run format",
"git add"
],
"src/pages/**/*.md": [
"npm run js-to-jsx",
"git add"
]
}
}