-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.17 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
{
"name": "lukecod.es",
"description": "Luke's code blog.",
"version": "0.1.0",
"author": "Luke Karrys",
"bugs": {
"url": "https://github.com/lukekarrys/lukecod.es/issues"
},
"dependencies": {
"gatsby": "^3.1.1",
"gatsby-image": "^3.1.0",
"gatsby-plugin-catch-links": "^3.1.0",
"gatsby-plugin-draft": "0.1.0",
"gatsby-plugin-manifest": "^3.1.0",
"gatsby-plugin-no-javascript": "^2.0.5",
"gatsby-plugin-offline": "^4.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sharp": "^3.1.1",
"gatsby-remark-autolink-headers": "^3.1.0",
"gatsby-remark-embed-gist": "^1.2.1",
"gatsby-remark-images": "^4.1.0",
"gatsby-remark-prismjs": "^4.1.0",
"gatsby-remark-smartypants": "^3.1.0",
"gatsby-remark-static-images": "^1.2.1",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-remark": "^3.1.0",
"gatsby-transformer-sharp": "^3.1.0",
"lodash": "^4.17.21",
"prismjs": "^1.23.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"terser": "^5.6.1",
"turbolinks": "^5.3.0-beta.1"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.22.0",
"if-env": "^1.0.4",
"prettier": "^2.2.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/lukekarrys/lukecod.es.git"
},
"scripts": {
"build": "gatsby build",
"build:remove-gatsby-js": "if-env TURBOLINKS=true || if-env NOJS=true && rm -rf public/*.{js,js.map,json} && rm -rf public/page-data || echo 'Not removing Gatsby JS'",
"build:turbolinks": "if-env TURBOLINKS=true && terser node_modules/turbolinks/dist/turbolinks.js > public/turbolinks.js || echo 'Not building Turbolinks'",
"clean": "gatsby clean",
"develop": "gatsby develop",
"eslint": "eslint . --fix",
"postbuild": "npm run build:remove-gatsby-js && npm run build:turbolinks",
"prebuild": "cd plugins/gatsby-remark-codesandbox-repl/ && npm install",
"prettier": "prettier --write \"**/*.{js,jsx,json,md}\"",
"serve": "gatsby serve",
"start": "npm run develop"
}
}