-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·81 lines (81 loc) · 3.04 KB
/
package.json
File metadata and controls
executable file
·81 lines (81 loc) · 3.04 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
{
"name": "blog",
"description": "An Official Blog of Arnondora",
"version": "1.0.0",
"author": "Arnon Puitrakul <me@arnondora.in.th>",
"dependencies": {
"@fortawesome/fontawesome": "1.0.1",
"@fortawesome/fontawesome-free-brands": "5.0.1",
"@fortawesome/fontawesome-free-solid": "5.0.1",
"@fortawesome/react-fontawesome": "0.0.16",
"babel-plugin-remove-graphql-queries": "^2.0.2-rc.3",
"babel-plugin-styled-components": "^1.7.1",
"color": "^2.0.1",
"dotenv": "^4.0.0",
"firebase": "^5.1.0",
"gatsby": "^2.0.0",
"gatsby-image": "^2.0.0",
"gatsby-plugin-catch-links": "^2.0.2-rc.1",
"gatsby-plugin-copy-files": "^1.0.1",
"gatsby-plugin-favicon": "^2.1.1",
"gatsby-plugin-feed": "^2.0.0-rc.2",
"gatsby-plugin-google-analytics": "^2.0.0-rc.2",
"gatsby-plugin-lodash": "^3.0.1",
"gatsby-plugin-manifest": "^2.0.2-rc.1",
"gatsby-plugin-no-sourcemaps": "^2.0.0-rc.0",
"gatsby-plugin-nprogress": "^2.0.0-rc.1",
"gatsby-plugin-offline": "^2.0.0",
"gatsby-plugin-react-helmet": "^3.0.0-rc.1",
"gatsby-plugin-remove-trailing-slashes": "^2.0.0-rc.1",
"gatsby-plugin-sharp": "^2.0.0-rc.7",
"gatsby-plugin-sitemap": "^2.0.0-rc.2",
"gatsby-plugin-styled-components": "^3.0.0-rc.5",
"gatsby-plugin-typography": "^2.2.0-rc.3",
"gatsby-remark-copy-linked-files": "^2.0.0-rc.5",
"gatsby-remark-emoji": "0.0.2",
"gatsby-remark-images": "^2.0.1-rc.5",
"gatsby-remark-prismjs": "^3.0.0-rc.2",
"gatsby-remark-responsive-iframe": "^2.0.0-rc.5",
"gatsby-remark-smartypants": "^2.0.0-rc.1",
"gatsby-source-filesystem": "^2.0.1-rc.6",
"gatsby-transformer-json": "^2.1.1",
"gatsby-transformer-remark": "^2.1.1-rc.5",
"gatsby-transformer-sharp": "^2.1.1-rc.3",
"html-loader": "^0.5.1",
"husky": "^0.14.3",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"moment": "^2.19.4",
"prismjs": "^1.15.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-fontawesome": "^1.6.1",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.13",
"sanitize-html": "^1.18.2",
"styled-components": "^3.1.6",
"typography": "^0.16.17"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "yarn run remove-cache && node --max-old-space-size=20000 ./node_modules/.bin/gatsby build",
"build-staging": "yarn run remove-cache && GATSBY_ENV=staging node --max-old-space-size=20000 ./node_modules/.bin/gatsby build",
"develop": "yarn run remove-cache && gatsby develop",
"predeploy": "yarn build",
"deploy": "firebase deploy -P default",
"deploy-staging": "yarn build-staging && firebase deploy -P staging",
"serve": "gatsby serve",
"remove-cache": "rm -rf .cache",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "yarn run format && exit 0"
},
"devDependencies": {
"prettier": "^1.8.2",
"webpack-bundle-analyzer": "^2.9.2"
}
}