-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "yfr-dot-com",
"version": "1.0.0",
"main": "index.js",
"license": "GPL-3.0",
"scripts": {
"lint": "standard | snazzy",
"dev": "gatsby develop -p 3000",
"clean": "rimraf public/**",
"build": "gatsby build",
"serve": "gatsby serve",
"publish": "node publish.js",
"deploy": "npm run clean && npm run build && npm run publish"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
},
"dependencies": {
"autoprefixer": "^7.1.6",
"bluebird": "^3.5.1",
"buttercms": "^1.1.0",
"gatsby": "1.9.100",
"gatsby-image": "^1.0.24",
"gatsby-link": "^1.6.24",
"gatsby-plugin-google-analytics": "^1.0.11",
"gatsby-plugin-postcss-sass": "^1.0.12",
"gatsby-plugin-purify-css": "^2.2.1",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-sharp": "^1.6.21",
"gatsby-plugin-sitemap": "^1.2.5",
"gatsby-source-filesystem": "^1.5.8",
"gatsby-transformer-sharp": "^1.6.14",
"gh-pages": "^1.1.0",
"html-to-react": "^1.3.1",
"postcss-import": "^11.0.0",
"postcss-simple-vars": "^4.1.0",
"prismjs": "^1.8.4",
"prop-types": "^15.6.0",
"react-helmet": "^5.2.0",
"react-motion": "^0.5.2",
"slash": "^1.0.0",
"tachyons": "^4.9.0"
},
"pre-commit": [
"lint"
],
"standard": {
"parser": "babel-eslint"
}
}