-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.7 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
{
"name": "codyaprice.com",
"private": true,
"description": "Personal website",
"version": "0.0.1",
"author": "Cody A Price <[email protected]>",
"bugs": {
"url": "https://github.com/dev-cprice/codyaprice.com/issues"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"gatsby": "^2.24.14",
"gatsby-plugin-emotion": "^4.3.10",
"gatsby-plugin-feed": "^2.5.11",
"gatsby-plugin-manifest": "^2.4.21",
"gatsby-plugin-mdx": "^1.2.30",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^3.2.21",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.23",
"gatsby-plugin-typescript": "^2.4.16",
"gatsby-plugin-typography": "^2.5.10",
"gatsby-redirect-from": "^0.2.4",
"gatsby-remark-autolink-headers": "^2.3.11",
"gatsby-remark-copy-linked-files": "^2.3.12",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-remark-prismjs": "^3.5.10",
"gatsby-remark-responsive-iframe": "^2.4.12",
"gatsby-source-filesystem": "^2.3.23",
"gatsby-transformer-remark": "^2.8.27",
"gatsby-transformer-sharp": "^2.5.11",
"lodash.kebabcase": "^4.1.1",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.20.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"react-particles-js": "^3.3.0",
"react-typography": "^0.16.19",
"remark": "^12.0.1",
"remark-html": "^12.0.0",
"typography": "^0.16.19"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@types/lodash.kebabcase": "^4.1.6",
"@types/mdx-js__react": "^1.5.2",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/typography": "^0.16.3",
"@types/vfile-message": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"args": "^5.0.1",
"async-prompt": "^1.0.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-preset-gatsby": "^0.4.2",
"core-js": "^2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.0.3",
"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": "^4.0.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"markdownlint-cli": "^0.23.0",
"mustache": "^4.0.1",
"prettier": "^2.0.5",
"typescript": "^4.1.5"
},
"homepage": "https://codyaprice.com",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-cprice/codyaprice.com.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint": "yarn run eslint",
"lint:fix": "yarn run eslint --fix",
"type-check": "tsc --noEmit",
"new-post": "node scripts/new-post"
}
}