-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.58 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.58 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
{
"version": "1.0.0",
"name": "dash-blog",
"description": "Simple starter for Gatsby",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"clean": "rm -rf public",
"build": "gatsby build",
"copy": "find -E ./pages -regex '.*\\.(pdf|txt|png|jpg|jpeg|gif)$' -exec cp -v {} ./public ';'",
"rebuild": "npm run clean ; npm run build ; npm run copy",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"serve": "live-server --watch=./public --port=8400 --host=localhost ./public",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run clean; gatsby build --prefix-links; gh-pages -d public"
},
"keywords": [
"gatsby",
"lumen",
"starter"
],
"author": "Alexander Shelepenok <a.shelepenok@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.18.0",
"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",
"bootstrap": "^4.0.0-alpha.5",
"classnames": "^2.1.2",
"dotenv": "^2.0.0",
"draft-convert": "^1.4.3",
"draft-js-export-markdown": "^0.2.2",
"draft-js-import-markdown": "^0.2.1",
"firebase": "^3.7.4",
"front-matter": "^2.0.8",
"gatsby": "^0.12.0",
"history": "^2.1.1",
"lodash": "^4.14.1",
"markdown-it": "^6.0.2",
"medium-draft": "^0.4.0",
"moment": "^2.17.1",
"octokat": "^0.4.18",
"react": "^15.3.0",
"react-document-title": "^2.0.2",
"react-dom": "^15.3.0",
"react-ga": "^2.1.2",
"react-redux": "^5.0.1",
"react-router": "^2.6.1",
"reactfire": "^1.0.0",
"redux": "^3.6.0",
"redux-form": "^6.4.1",
"redux-logger": "^2.7.4",
"safe-access": "^0.1.0",
"underscore.string": "^3.2.3"
},
"devDependencies": {
"@types/firebase": "^2.4.31",
"autoprefixer": "^6.3.7",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"image-webpack-loader": "^2.0.0",
"live-server": "^1.2.0",
"lost": "^7.0.3",
"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",
"rucksack-css": "^0.8.5",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
}
}