-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
107 lines (107 loc) · 3.69 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "svl-simulator-website",
"private": true,
"description": "Website spotlighting the SVL Simulator and related services.",
"version": "1.0.4",
"license": "Apache-2.0",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"type-check": "tsc --noEmit",
"lint": "npm run lintfile .",
"lint:fix": "npm run lintfile:fix .",
"lintfile": "eslint --ext .js,.jsx,.ts,.tsx",
"lintfile:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"startserver": "npm run develop -- --host=0.0.0.0",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"No tests yet\" && exit 0",
"import-docs": "cd static && npx rimraf docs && git clone --depth 1 [email protected]:HDRP/docs-website.git docs",
"degit-docs": "npx rimraf static/docs/.git",
"deploy": "gatsby build && gh-pages -d public -b public"
},
"dependencies": {
"@material-ui/core": "^4.11.1",
"@mdx-js/mdx": "^1.6.21",
"@mdx-js/react": "^1.6.21",
"@types/mdx-js__react": "^1.5.3",
"axios": "^0.21.0",
"babel-plugin-styled-components": "^1.12.0",
"dotenv": "^8.2.0",
"emojisplosion": "^2.6.1",
"formik": "^2.2.5",
"gatsby": "^2.27.1",
"gatsby-image": "^2.6.0",
"gatsby-plugin-client-side-redirect": "^1.1.0",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-gdpr-cookies": "^1.0.11",
"gatsby-plugin-graphql-codegen": "^2.7.1",
"gatsby-plugin-manifest": "^2.7.0",
"gatsby-plugin-material-ui": "^2.1.10",
"gatsby-plugin-mdx": "^1.5.0",
"gatsby-plugin-offline": "^3.5.0",
"gatsby-plugin-react-helmet": "^3.5.0",
"gatsby-plugin-react-i18next": "0.0.27",
"gatsby-plugin-robots-txt": "^1.5.5",
"gatsby-plugin-root-import": "^2.0.5",
"gatsby-plugin-sharp": "^2.9.0",
"gatsby-plugin-sitemap": "^3.2.0",
"gatsby-plugin-styled-components": "^3.5.0",
"gatsby-plugin-typescript-checker": "^1.1.1",
"gatsby-plugin-webfonts": "^1.1.3",
"gatsby-remark-autolink-headers": "^2.11.0",
"gatsby-remark-gifs": "^1.0.0",
"gatsby-remark-images": "^3.6.0",
"gatsby-remark-responsive-iframe": "^3.1.0",
"gatsby-source-filesystem": "^2.6.1",
"gatsby-transformer-sharp": "^2.7.0",
"glob": "^7.1.6",
"i18next": "^19.8.4",
"intersection-observer": "^0.12.0",
"moment": "^2.29.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-ga": "^3.3.0",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.3",
"react-konami-code": "^2.2.2",
"styled-components": "^5.2.1",
"supports-webp-sync": "^1.0.1",
"universal-cookie": "^4.0.4",
"yup": "^0.31.0"
},
"devDependencies": {
"@types/material-ui": "^0.21.8",
"@types/node": "^14.14.9",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.4",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.x",
"gh-pages": "^3.1.0",
"prettier": "2.2.0",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}