-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.59 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.59 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
{
"name": "narusite",
"private": true,
"description": "Personal blog 'narusite' created by gatsby.",
"version": "0.1.0",
"author": "Issei Naruo <naruse1wtbdev@gmail.com>",
"bugs": {
"url": "https://github.com/narusei/narusei.github.io/issues"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@tailwindcss/line-clamp": "^0.3.1",
"autoprefixer": "^10.4.2",
"catchy-image": "^0.1.6",
"date-fns": "^2.28.0",
"gatsby": "^4.9.0",
"gatsby-plugin-feed": "^4.9.0",
"gatsby-plugin-gatsby-cloud": "^4.9.0",
"gatsby-plugin-google-analytics": "^4.9.0",
"gatsby-plugin-image": "^2.9.0",
"gatsby-plugin-manifest": "^4.9.0",
"gatsby-plugin-offline": "^5.9.0",
"gatsby-plugin-postcss": "^5.9.0",
"gatsby-plugin-react-helmet": "^5.9.0",
"gatsby-plugin-sass": "^5.9.0",
"gatsby-plugin-sharp": "^4.9.0",
"gatsby-plugin-typegen": "^2.2.4",
"gatsby-remark-copy-linked-files": "^5.9.0",
"gatsby-remark-images": "^6.9.0",
"gatsby-remark-prismjs": "^6.9.0",
"gatsby-remark-responsive-iframe": "^5.9.0",
"gatsby-remark-smartypants": "^5.9.0",
"gatsby-source-filesystem": "^4.9.0",
"gatsby-transformer-remark": "^5.9.0",
"gatsby-transformer-sharp": "^4.9.0",
"postcss": "^8.4.8",
"prismjs": "^1.25.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"sass": "^1.49.9",
"tailwindcss": "^3.0.23",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typescript": "^4.6.2"
},
"devDependencies": {
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.3",
"gh-pages": "^3.2.3",
"prettier": "^2.5.1",
"ts-node": "^10.6.0"
},
"homepage": "https://github.com/narusei/narusei.github.io#readme",
"keywords": [
"gatsby"
],
"license": "0BSD",
"repository": {
"type": "git",
"url": "git+https://github.com/narusei/narusei.github.io.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format:prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:eslint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "yarn format:eslint && yarn format:prettier",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"typecheck": "tsc",
"deploy": "gatsby build && gh-pages -d public"
}
}