This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
{
"version": "1.2.0",
"name": "gatsby-starter-lumen",
"description": "Simple starter for Gatsby",
"main": "n/a",
"scripts": {
"start": "gatsby develop",
"develop": "gatsby develop",
"build": "gatsby build",
"clean:public": "rm -rf public",
"clean": "npm run clean:public",
"copy:files": "find ./pages -maxdepth 1 -type f -regextype posix-extended -regex '.+\\.(pdf|txt|png|jpg|jpeg|gif)$' -exec cp -v {} ./public ';'",
"copy": "npm run copy:files",
"lint": "./node_modules/.bin/eslint --cache --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gatsby build --prefix-links && gh-pages -d public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alxshelepenok/gatsby-starter-lumen.git"
},
"keywords": [
"gatsby",
"blog",
"react"
],
"author": "Alexander Shelepenok <alxshelepenok@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.1.2",
"front-matter": "^2.3.0",
"gatsby": "^0.12.28",
"history": "^2.1.2",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"raw-loader": "^0.5.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-ga": "^2.1.2",
"react-helmet": "^5.2.0",
"react-router": "^2.6.1",
"react-share": "^1.18.0",
"safe-access": "^0.1.0",
"underscore.string": "^3.2.3",
"url-loader": "^0.5.7"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.28.7",
"eslint": "^3.x",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.8.x",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^0.10.0",
"gh-pages": "^0.12.0",
"image-webpack-loader": "^2.0.0",
"lost": "^8.0.0",
"null-loader": "^0.1.1",
"postcss-loader": "^1.2.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.0",
"rucksack-css": "^0.9.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
}
}