forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.26 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
{
"name": "gatsby-example-using-javascript-transforms",
"version": "1.0.0",
"description": "example site and blog",
"main": "index.js",
"scripts": {
"develop": "node_modules/.bin/gatsby develop",
"dev:hard": "rm -rf .cache && rm -rf public && npm run develop",
"build": "npm run clean & .\\node_modules\\.bin\\gatsby build",
"serve": "node_modules/.bin/gatsby serve",
"clean:public": "rm -rf public & mkdir public",
"clean": "npm run clean:public",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"personal",
"blog"
],
"author": "gatsbyjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"homepage": "https://www.gatsbyjs.org",
"dependencies": {
"bulma": "0.4.2",
"d3": "4.9.1",
"gatsby": "latest",
"gatsby-link": "latest",
"gatsby-plugin-sass": "^2.0.1",
"gatsby-remark-prismjs": "latest",
"gatsby-source-filesystem": "latest",
"gatsby-transformer-javascript-frontmatter": "latest",
"gatsby-transformer-remark": "latest",
"moment": "^2.14.1",
"normalize.css": "^7.0.0",
"prop-types": "^15.5.8",
"react-helmet": "^5.2.0"
}
}