-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.75 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.75 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
{
"name": "alex-dacre-dot-com",
"description": "I am a JavaScript full stack developer and this is my blog, project log, and resume",
"repository": {
"type": "git",
"url": "https://github.com/agoldenduck/agoldenduck.github.io"
},
"version": "0.4.0",
"author": "Alex Dacre <alex@alexdacre.com>",
"dependencies": {
"front-matter": "^2.0.7",
"gatsby": "^0.12.6",
"highlight.js": "^9.6.0",
"history": "^2.0.2",
"js-yaml": "^3.6.0",
"lazysizes": "^3.0.0-rc2",
"lodash": "^4.17.2",
"markdown-it": "^7.0.1",
"markdown-it-abbr": "^1.0.3",
"markdown-it-attrs": "^0.6.3",
"markdown-it-deflist": "^2.0.1",
"markdown-it-footnote": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"moment": "^2.17.0",
"object-assign": "^4.1.0",
"rc-tooltip": "^3.4.2",
"react": "^15.3.2",
"react-css-modules": "^4.1.0",
"react-dom": "^15.3.2",
"react-encoded-mailto": "0.0.6",
"react-fa": "^4.1.2",
"react-fontawesome": "^1.3.1",
"react-headroom": "^2.1.2",
"react-helmet": "^3.1.0",
"react-responsive-grid": "^0.3.3",
"react-router": "^2.8.1",
"react-typography": "^0.14.0",
"safe-access": "^0.1.0",
"toml-js": "0.0.8",
"typography": "^0.14.0",
"typography-plugin-code": "^0.14.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-eslint": "^7.0.0",
"babel-jest": "^17.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.9",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-postcss": "^2.0.2",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.4.1",
"gh-pages": "^0.11.0",
"jest": "^17.0.3",
"svgo": "^0.7.1"
},
"keywords": [
"alex",
"dacre",
"blog",
"developer",
"web",
"react"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build --prefix-links && gh-pages -d public -b master",
"develop": "gatsby develop",
"lint": "eslint .",
"test": "jest"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"react",
"import"
],
"extends": [
"eslint-config-postcss",
"airbnb"
],
"settings": {
"import/core-modules": [
"gatsby-helpers"
]
},
"env": {
"browser": true,
"node": true,
"jest": true
},
"rules": {}
}
}