-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.72 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
{
"name": "gufo2html-web",
"private": true,
"description": "gUFO to HTML generator",
"version": "0.1.0",
"author": "OntoUML Org.",
"scripts": {
"start": "npm-run-all -p prettier:watch stylelint:watch develop",
"build": "gatsby build",
"develop": "gatsby develop -H 0.0.0.0",
"prettier:watch": "onchange \"**/*.{js,ts,tsx,json,md,mdx}\" -- prettier --write {{changed}}",
"stylelint:watch": "onchange '**/styled.tsx' -- stylelint --fix {{changed}}",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"dependencies": {
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.14",
"@types/react-ga": "^2.3.0",
"@types/react-helmet": "^5.0.15",
"@types/styled-components": "^5.0.1",
"axios": "^0.19.2",
"babel-plugin-styled-components": "^1.10.7",
"final-form": "^4.18.7",
"gatsby": "^2.21.33",
"gatsby-image": "^2.4.3",
"gatsby-plugin-google-analytics": "^2.1.37",
"gatsby-plugin-manifest": "^2.2.46",
"gatsby-plugin-material-ui": "^2.1.8",
"gatsby-plugin-offline": "^3.0.39",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.1.23",
"gatsby-plugin-sharp": "^2.4.10",
"gatsby-plugin-sitemap": "^2.2.28",
"gatsby-plugin-styled-components": "^3.1.20",
"gatsby-plugin-typescript": "^2.2.2",
"gatsby-source-filesystem": "^2.1.52",
"gatsby-transformer-sharp": "^2.3.18",
"gufo2html": "0.0.1-alpha.2",
"nprogress": "^0.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-final-form": "^6.3.5",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-hook-form": "^5.7.2",
"styled-components": "^5.1.0",
"styled-media-query": "^2.1.2"
},
"devDependencies": {
"dotenv": "^8.2.0",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-tslint": "^0.0.2",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"prettier": "^1.19.1",
"stylelint": "^13.2.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.0.0",
"stylelint-processor-styled-components": "^1.10.0",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^4.2.0",
"tslint-react-a11y": "^1.1.0",
"tslint-react-hooks": "^2.2.1",
"typescript": "^3.8.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}