-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 2.6 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
{
"name": "calumsieppert.me",
"private": true,
"description": "My personal website",
"version": "0.1.0",
"author": "Calum Sieppert",
"scripts": {
"build": "yarn clean && gatsby build",
"develop": "yarn clean && gatsby develop",
"develop-mobile": "yarn clean && gatsby develop -H 0.0.0.0 -p 8000",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "yarn develop",
"serve": "yarn build && gatsby serve",
"qserve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"get-schema": "get-graphql-schema http://localhost:8000/___graphql > schema.graphql"
},
"dependencies": {
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.4.0",
"esm": "^3.2.25",
"gatsby": "^4.3.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-advanced-sitemap": "^2.0.0",
"gatsby-plugin-catch-links": "^4.3.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-graphql-codegen": "^3.1.0",
"gatsby-plugin-image": "^2.3.0",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-offline": "^5.3.0",
"gatsby-plugin-postcss": "^5.3.0",
"gatsby-plugin-react-helmet": "^5.3.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-remark-autolink-headers": "^5.3.0",
"gatsby-remark-check-links": "^2.1.0",
"gatsby-remark-copy-relative-linked-files": "^1.3.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^6.3.0",
"gatsby-remark-katex": "^6.3.0",
"gatsby-remark-prismjs": "^6.3.0",
"gatsby-remark-rewrite-relative-links": "^1.0.8",
"gatsby-remark-smartypants": "^5.3.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-transformer-remark": "^5.3.0",
"gatsby-transformer-sharp": "^4.3.0",
"graphql": "^15.7.2",
"katex": "^0.15.1",
"path-browserify": "^1.0.1",
"postcss": "^8.4.23",
"postcss-import": "^14.0.2",
"prismjs": "^1.22.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"tailwindcss": "^2.2.19",
"ts-node": "^9.0.0"
},
"devDependencies": {
"gatsby-cli": "^4.3.0",
"get-graphql-schema": "^2.1.2",
"prettier": "2.5.1",
"typescript": "^4.0.5"
},
"resolutions": {},
"license": "MIT"
}