-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.99 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "gatsby-blog",
"version": "1.0.0",
"description": "Opinionated starter template to get started with a blog",
"keywords": [
"gatsby",
"gatsby-starter",
"storybook"
],
"homepage": "https://github.com/yehjxraymond/gatsby-blog",
"license": "MIT",
"author": {
"name": "Raymond Yeh",
"url": "https://geek.sg"
},
"files": [],
"main": "n/a",
"repository": {
"type": "git",
"url": "https://github.com/yehjxraymond/gatsby-blog"
},
"scripts": {
"dev": "npm-run-all -p dev:*",
"dev:storybook": "start-storybook -p 6006 -c .storybook",
"dev:js": "gatsby develop",
"dev:css": "postcss src/tailwind.css -o static/css/index.css --watch",
"start": "concurrently --kill-others \"npm run dev\" \"npm run storybook\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"build": "NODE_ENV=production npm-run-all -s build:css build:gatsby",
"build:css": "postcss src/tailwind.css -o static/css/index.css",
"build:gatsby": "gatsby build",
"build:storybook": "build-storybook -c .storybook -o public/docs",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"format": "prettier --write src/**/*.{js,jsx,tsx,ts,json}",
"test": "jest",
"generate-favicon": "npx favicons-generate --input ./static/logo.png --output ./static/img && cp ./static/img/favicon.ico ./static/favicon.ico"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"@tailwindcss/ui": "^0.5.0",
"babel-plugin-styled-components": "^1.11.1",
"date-fns": "^2.15.0",
"gatsby": "^2.24.37",
"gatsby-image": "^2.4.14",
"gatsby-mdx": "^1.0.0",
"gatsby-plugin-manifest": "^2.4.22",
"gatsby-plugin-netlify-cms": "^4.3.11",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-seo": "0.0.2",
"gatsby-plugin-sharp": "^2.6.25",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-slug": "^1.1.0",
"gatsby-plugin-styled-components": "^3.3.10",
"gatsby-plugin-typescript": "^2.4.17",
"gatsby-remark-copy-linked-files": "^2.3.12",
"gatsby-remark-images": "^3.3.25",
"gatsby-remark-prismjs": "^3.5.10",
"gatsby-remark-relative-images": "^0.3.0",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-transformer-remark": "^2.8.28",
"gatsby-transformer-sharp": "^2.5.12",
"netlify-cms-app": "^2.12.19",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"styled-components": "^5.1.1",
"tailwindcss": "^1.6.2",
"tailwindcss-gradients": "^3.0.0",
"ts-node": "^8.10.2"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@storybook/addon-a11y": "^5.3.19",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-options": "5.3.19",
"@storybook/addon-viewport": "5.3.19",
"@storybook/react": "^5.3.19",
"@types/jest": "^26.0.9",
"@types/react-helmet": "^6.1.0",
"@types/storybook__addon-info": "^5.2.1",
"@types/storybook__react": "^5.2.1",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.2",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"react-markdown": "^4.3.1",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
}
}