-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.89 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
{
"name": "snowflake-web",
"description": "",
"version": "0.0.1",
"author": "Ronny Chan <ronny@ronnychan.ca>",
"dependencies": {
"devicon": "^2.14.0",
"gatsby": "^4.6.1",
"gatsby-cli": "^4.6.0",
"gatsby-link": "^4.6.0",
"gatsby-plugin-catch-links": "^4.6.0",
"gatsby-plugin-feed": "^4.6.0",
"gatsby-plugin-manifest": "^4.6.0",
"gatsby-plugin-netlify": "^4.1.0",
"gatsby-plugin-nprogress": "^4.6.0",
"gatsby-plugin-offline": "^5.6.0",
"gatsby-plugin-preact": "^6.6.0",
"gatsby-plugin-react-helmet": "^5.6.0",
"gatsby-plugin-sass": "^5.6.0",
"gatsby-plugin-sharp": "^4.6.0",
"gatsby-plugin-sitemap": "^5.6.0",
"gatsby-plugin-twitter": "^4.6.0",
"gatsby-remark-copy-linked-files": "^5.6.0",
"gatsby-remark-images": "^6.6.0",
"gatsby-remark-prismjs": "^6.6.0",
"gatsby-remark-reading-time": "https://github.com/arturparkhisenko/gatsby-remark-reading-time#head=add-gatsby-v4",
"gatsby-remark-responsive-iframe": "^5.6.0",
"gatsby-remark-smartypants": "^5.6.0",
"gatsby-source-filesystem": "^4.6.0",
"gatsby-transformer-remark": "^5.6.0",
"gatsby-transformer-sharp": "^4.6.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"path-browserify": "^1.0.1",
"popper.js": "^1.14.6",
"prismjs": "^1.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-lazyload": "^3.2.0",
"reading-time": "^1.5.0",
"sass": "^1.49.7",
"webpack": "^5.68.0"
},
"devDependencies": {
"animate.css": "^4.1.1",
"babel-eslint": "^10.0.1",
"bluebird": "^3.7.2",
"bootstrap": "5.1.3",
"emergence.js": "^1.1.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"font-awesome": "^4.7.0",
"gh-pages": "^3.2.3",
"lint-staged": "^12.3.3",
"normalize.css": "^8.0.1",
"prettier": "^2.5.1",
"striptags": "^3.2.0",
"textlint": "^12.1.0",
"textlint-rule-preset-ja-spacing": "^2.2.0",
"textlint-rule-preset-japanese": "^7.0.0"
},
"keywords": [
"gatsby",
"gatstrap",
"starter"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"*.md": [
"npm run lint:textfix",
"git add"
]
},
"main": "n/a",
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.+(js|jsx|json|css|scss)\"",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"lint:text": "textlint src/pages/**/index.md",
"lint:textfix": "textlint --fix src/pages/**/index.md",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"packageManager": "yarn@3.1.1"
}