forked from aws-amplify-jp/aws-amplify-jp.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "amplify-japan-user-group",
"version": "1.0.0",
"private": true,
"description": "Amplify 日本ユーザーグループのウェブサイト",
"author": "Amplify Japan User Group",
"keywords": [
"gatsby"
],
"packageManager": "[email protected]",
"engines": {
"node": "16.20.2",
"npm": "9.6.6"
},
"scripts": {
"prestart": "npm run fetch:contents",
"start": "gatsby develop",
"prebuild": "npm run fetch:contents",
"build": "gatsby clean && gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "npm run lint",
"lint": "prettier src scripts gatsby-config.js",
"lint:fix": "prettier --write src scripts gatsby-config.js gatsby-node.js",
"fetch:contents": "node scripts/fetchContents.js"
},
"dependencies": {
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"classnames": "^2.3.1",
"gatsby": "^3.9.1",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-manifest": "^3.9.0",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-react-helmet": "^4.9.0",
"gatsby-plugin-sitemap": "^4.5.0",
"gatsby-remark-component": "^1.1.3",
"gatsby-source-filesystem": "^3.9.0",
"gatsby-transformer-remark": "^4.6.0",
"prettier": "^2.3.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"rehype-react": "^6.2.1"
},
"devDependencies": {
"glob": "^7.1.7",
"node-fetch": "^2.6.1",
"uuid": "^3.4.0"
}
}