-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.12 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ore-ore-gatsbyjs-template",
"description": "Gatsby OreOre TypeScript starter",
"version": "1.0.0",
"author": "YutaUra<yuuta3594@outlook.jp>",
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build --log-pages",
"develop": "gatsby develop",
"serve": "gatsby serve",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "husky install && typesync || :",
"type-check": "tsc",
"format-check": "run-p format-check:*",
"format-check:ts": "prettier --parser typescript --trailing-comma es5 --no-semi --single-quote -c \"src/**/*.ts*\"",
"format-check:md": "prettier --parser mdx -c \"src/**/*.md*\"",
"format:md": "prettier --parser mdx -w \"src/**/*.md*\"",
"lint": "run-p lint:*",
"lint:md": "yarn eslint src --ext .md,.mdx",
"lint:ts": "yarn eslint src --ext .ts,.tsx"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --parser typescript --write"
],
"*.{md,mdx}": [
"prettier --parser mdx --write"
],
"*.{js,jsx,ts,tsx,md,mdx}": [
"eslint --fix"
]
},
"dependencies": {
"@mdx-js/mdx": "^2.0.0-next.8",
"@mdx-js/react": "^1.6.22",
"autoprefixer": "^10.4.14",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"eslint-plugin-mdx": "^1.17.1",
"gatsby": "^3.12.1",
"gatsby-link": "^4.24.1",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-google-gtag": "^3.15.0",
"gatsby-plugin-graphql-codegen": "^3.1.1",
"gatsby-plugin-image": "^1.4.1",
"gatsby-plugin-manifest": "^3.15.0",
"gatsby-plugin-mdx": "^2.12.0",
"gatsby-plugin-postcss": "^4.15.0",
"gatsby-plugin-react-helmet": "^4.15.0",
"gatsby-plugin-robots-txt": "^1.7.1",
"gatsby-plugin-sharp": "^3.15.0",
"gatsby-plugin-sitemap": "^4.11.0",
"gatsby-source-filesystem": "^3.15.0",
"gatsby-transformer-sharp": "^3.15.0",
"lodash-es": "^4.17.21",
"postcss": "^8.4.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"recoil": "^0.7.7",
"tailwindcss": "^3.3.1"
},
"devDependencies": {
"@types/eslint": "^8.4.2",
"@types/lodash-es": "^4.17.7",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^18.15.11",
"@types/prettier": "^2.7.2",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"@types/react-helmet": "^6.1.6",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@typescript-eslint/types": "^5.57.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-rulesdir": "^0.2.2",
"husky": "^8.0.3",
"lint-staged": "^12.4.2",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^2.8.1",
"string-similarity": "^4.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"typesync": "^0.10.0",
"yaml-ast-parser": "^0.0.43"
},
"contributors": [
"YutaUra<yuuta3594@outlook.jp>"
],
"browserslist": [
"defaults"
]
}