-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.8 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
78
79
80
81
82
83
{
"name": "gatsby-typescript-starter-blog",
"description": "Gatsby Typescript Starter Blog",
"version": "1.0.0",
"author": "Frank Ahn <[email protected]>",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"dev": "yarn run develop",
"start": "npm run develop",
"preprod": "npm run build",
"prod": "gatsby serve --open",
"format": "prettier \"{,!(node_modules|public|coverage|.cache)/**/}*.{js,jsx,ts,tsx,json}\"",
"format:check": "npm run format -- --check",
"format:write": "npm run format -- --write",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"deploy": "gatsby build && gh-pages -d public -b master"
},
"keywords": [
"gatsby",
"typescript"
],
"dependencies": {
"Lisp": "mattn/vscode-lisp",
"autoprefixer": "^10.4.2",
"elixir-ls": "elixir-lsp/vscode-elixir-ls",
"gatsby": "^2.20.2",
"gatsby-image": "^2.0.20",
"gatsby-plugin-catch-links": "^2.3.11",
"gatsby-plugin-feed": "^3.12.0",
"gatsby-plugin-google-fonts-v2": "^0.0.6",
"gatsby-plugin-manifest": "^2.0.9",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-postcss": "^5.6.0",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-typescript": "^2.4.19",
"gatsby-plugin-use-dark-mode": "^1.3.0",
"gatsby-remark-autolink-headers": "^2.2.3",
"gatsby-remark-copy-linked-files": "^2.1.33",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.3.25",
"gatsby-remark-responsive-iframe": "^2.2.30",
"gatsby-remark-vscode": "^3.3.0",
"gatsby-source-filesystem": "^2.1.43",
"gatsby-transformer-json": "^2.4.11",
"gatsby-transformer-remark": "^2.6.45",
"gatsby-transformer-sharp": "^2.1.8",
"postcss": "^8.2.13",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-toggle-dark-mode": "^1.0.4",
"typescript": "^4.3.5",
"use-dark-mode": "^2.3.1",
"viml": "XadillaX/vscode-language-viml",
"vscode-themes": "Microsoft/vscode-themes"
},
"devDependencies": {
"@tailwindcss/typography": "^0.4.1",
"@types/node": "^10.17.13",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.14",
"cypress": "^10.11.0",
"gh-pages": "^3.1.0",
"prettier": "^2.4.1",
"start-server-and-test": "^1.12.0",
"tailwindcss": "^2.2.7",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/frnki/gatsby-typescript-starter-blog"
}
}