-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
126 lines (126 loc) · 2.93 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
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "gatsby-starter-drunkenblog",
"description": "A Gatsby Blog",
"version": "1.0.0",
"author": "David Konsumer <konsumer@jetboystudio.com>",
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"catch-links": "^2.0.1",
"gatsby": "^0.12.0",
"history": "^2.1.1",
"just-intersect": "^1.1.20",
"lodash": "^4.13.1",
"moment": "^2.14.1",
"react": "^15.2.1",
"react-disqus-thread": "^0.4.0",
"react-document-title": "^2.0.2",
"react-dom": "^15.2.1",
"react-ga": "^2.1.1",
"react-responsive-grid": "^0.3.3",
"react-router": "^2.6.0",
"react-typography": "^0.14.0",
"safe-access": "^0.1.0",
"slugify": "^0.1.1",
"typography": "^0.14.0",
"typography-theme-wordpress-2016": "^0.14.0",
"underscore.string": "^3.2.3"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.11.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"gh-pages": "^0.11.0",
"image-webpack-loader": "^2.0.0",
"null-loader": "^0.1.1",
"postcss-loader": "^0.9.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.10",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
},
"homepage": "http://blog.jetboystudio.com",
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/konsumer/blog.jetboystudio.com.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-links && gh-pages -d public"
},
"eslintConfig": {
"extends": "eslint-config-airbnb",
"rules": {
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"no-console": [
0
],
"func-names": [
0
],
"semi": [
2,
"never"
],
"no-extra-semi": [
2
],
"space-before-function-paren": [
2,
"always"
],
"no-else-return": [
0
],
"space-infix-ops": [
0
],
"react/prefer-es6-class": [
0
],
"react/prefer-stateless-function": [
0
],
"import/no-unresolved": [
0
],
"global-require": [
0
]
},
"globals": {
"__PREFIX_LINKS__": true
}
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
}
}