-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 3.13 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
{
"name": "nosleepjavascript-blog",
"private": true,
"description": "A programming blog for insomniac",
"version": "0.1.0",
"author": "the gang",
"scripts": {
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b master",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\" \"./*.{js,ts,json,md}\"",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "npm run test:format && npm run build && npm run typecheck && npm run lint",
"test:format": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@babel/compat-data": "^7.11.0",
"@babel/core": "^7.11.0",
"@emotion/core": "10.0.27",
"@emotion/styled": "10.0.27",
"@types/color": "^3.0.1",
"@types/react-dom": "^16.9.8",
"autoprefixer": "^10.2.5",
"classnames": "^2.3.1",
"color": "3.1.2",
"gatsby": "^2.18.4",
"gatsby-image": "^2.2.37",
"gatsby-plugin-emotion": "4.1.21",
"gatsby-plugin-feed": "^2.3.22",
"gatsby-plugin-google-adsense": "^1.1.3",
"gatsby-plugin-google-analytics": "^2.1.29",
"gatsby-plugin-graphql-codegen": "^2.7.1",
"gatsby-plugin-manifest": "^2.2.30",
"gatsby-plugin-offline": "^3.0.24",
"gatsby-plugin-postcss": "^4.2.0",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-sharp": "^2.3.4",
"gatsby-plugin-twitter": "^2.3.12",
"gatsby-plugin-typescript": "^2.2.0",
"gatsby-remark-autolink-headers": "2.4.0",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-copy-linked-files": "^2.1.31",
"gatsby-remark-emojis": "^0.4.2",
"gatsby-remark-images": "^3.1.34",
"gatsby-remark-prismjs": "^3.3.25",
"gatsby-remark-reading-time": "1.1.0",
"gatsby-remark-responsive-iframe": "^2.3.1",
"gatsby-remark-smartypants": "^2.1.17",
"gatsby-remark-table-of-contents": "0.0.9",
"gatsby-source-filesystem": "^2.1.39",
"gatsby-transformer-remark": "^2.6.53",
"gatsby-transformer-sharp": "^2.3.6",
"gatsby-transformer-yaml": "2.2.20",
"graphql": "^14.0.0",
"postcss": "^8.2.13",
"prismjs": "^1.25.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"tailwindcss": "^2.0.4",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typescript": "4"
},
"devDependencies": {
"@types/react-helmet": "^5.0.15",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"gatsby-transformer-yaml": "2.2.20",
"gh-pages": "^2.1.1",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "^2.0.4"
},
"license": "MIT",
"main": "n/a",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
}
}