-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.56 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
76
77
{
"name": "scraggo.com",
"private": false,
"description": "Software engineering, music, blog articles, and teaching resources by David Emanuel Cohen",
"version": "0.2.1",
"license": "MIT",
"engines": {
"node": "16.20.2"
},
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"deploy": "npm run clean && npm run task:copy && gatsby build && gh-pages -d public -b master",
"develop": "gatsby develop --port=8080",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"task:copy": "shell/copyfiles.sh",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"change-case": "^4.1.1",
"gatsby": "^2.18.12",
"gatsby-image": "^2.2.37",
"gatsby-plugin-catch-links": "^2.10.0",
"gatsby-plugin-feed": "^2.3.25",
"gatsby-plugin-manifest": "^2.2.34",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^3.0.30",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.3.10",
"gatsby-redirect-from": "^0.2.1",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-remark-copy-linked-files": "^2.1.33",
"gatsby-remark-embed-video": "^3.0.10",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.1.39",
"gatsby-remark-prismjs": "^3.3.29",
"gatsby-remark-responsive-iframe": "^2.2.30",
"gatsby-remark-smartypants": "^2.1.19",
"gatsby-source-filesystem": "^2.1.43",
"gatsby-transformer-remark": "^2.6.45",
"gatsby-transformer-sharp": "^2.3.9",
"lodash": "^4.17.20",
"prismjs": "^1.25.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-markdown": "^6.0.2",
"react-typography": "^0.16.19",
"sass": "^1.71.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^2.2.0",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}