forked from kyma-project/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·150 lines (150 loc) · 4.68 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@kyma-project/website",
"description": "Kyma Project Website",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/kyma-project/website"
},
"author": {
"name": "Kyma Website maintainers"
},
"keywords": [
"gatsby",
"kyma",
"kyma-project",
"kyma-project-io",
"kubernetes",
"cloud-native",
"knative",
"k8s"
],
"scripts": {
"start": "npm run clean && npm run develop",
"develop": "gatsby develop --port 5000",
"build": "npm run clean && gatsby build",
"build:prod": "npm run clean && GATSBY_SITE_URL='https://kyma-project.io' gatsby build",
"serve": "gatsby serve",
"serve:out": "gatsby serve -H 0.0.0.0",
"clean": "gatsby clean",
"start:functions": "netlify-lambda serve netlify/functions",
"build:functions": "netlify-lambda build netlify/functions",
"lint-check": "tslint -c tslint.json --project tsconfig.json --format verbose && prettier --check '**/*.{ts,tsx,js,jsx,json,html,css,yaml}'",
"lint-fix": "tslint -c tslint.json --project tsconfig.json --format verbose --fix; prettier --write '**/*.{ts,tsx,js,jsx,json,html,css,yaml}'",
"conflict-check": "tslint-config-prettier-check ./tslint.json",
"type-check": "tsc --noEmit",
"markdownlint": "markdownlint **/*.md",
"explore": "source-map-explorer \"public/*.js\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@octokit/rest": "^16.25.1",
"babel-plugin-styled-components": "^1.10.0",
"constate": "^1.0.0",
"gatsby": "^2.13.28",
"gatsby-plugin-env-variables": "^1.0.1",
"gatsby-plugin-feed": "^2.3.2",
"gatsby-plugin-gtag": "^1.0.11",
"gatsby-plugin-manifest": "^2.0.13",
"gatsby-plugin-netlify": "^2.0.16",
"gatsby-plugin-netlify-cache": "^1.1.0",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-sitemap": "^2.1.0",
"gatsby-plugin-styled-components": "^3.0.4",
"gatsby-plugin-typescript": "^2.0.3",
"gatsby-plugin-typography": "^2.2.5",
"gatsby-remark-embed-video": "^1.7.0",
"gatsby-source-filesystem": "^2.1.5",
"gatsby-transformer-remark": "^2.2.5",
"netlify-lambda": "^1.4.5",
"node-fetch": "^2.5.0",
"prism-react-renderer": "^0.1.5",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-cookie-banner": "^4.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-intl": "^2.8.0",
"react-markdown": "^4.0.8",
"react-modal": "^3.8.1",
"react-modal-hook": "^1.1.1",
"react-sticky": "^6.0.3",
"react-transition-group": "^2.9.0",
"react-typography": "^0.16.18",
"rooks": "^1.2.2",
"styled-components": "^4.1.3",
"styled-reset": "^1.6.6",
"typography": "^0.16.18"
},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"@types/aws-lambda": "^8.10.24",
"@types/fs-extra": "^8.0.0",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.132",
"@types/node-fetch": "^2.3.3",
"@types/qs": "^6.5.3",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-helmet": "^5.0.8",
"@types/react-intl": "^2.3.15",
"@types/react-modal": "^3.8.2",
"@types/react-sticky": "^6.0.3",
"@types/styled-components": "^4.1.6",
"@types/typography": "^0.16.2",
"babel-preset-gatsby": "^0.1.6",
"compare-versions": "^3.4.0",
"fs-extra": "^7.0.1",
"gatsby-plugin-lodash": "^3.0.5",
"gh-pages": "^2.0.1",
"github-webhook-event-types": "^1.2.1",
"glob": "^7.1.3",
"husky": "^1.1.4",
"js-yaml": "^3.13.1",
"lint-staged": "^8.0.5",
"lodash": "^4.17.15",
"markdownlint-cli": "^0.17.0",
"prettier": "^1.15.2",
"source-map-explorer": "^2.0.1",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"tslint-react-hooks": "^2.1.0",
"typescript": "^3.5.2",
"utility-types": "^3.7.0"
},
"bugs": {
"url": "https://github.com/kyma-project/website/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run type-check"
}
},
"lint-staged": {
"linters": {
"**/*.{js,jsx,json,css,html,yaml}": [
"prettier --config .prettierrc --write",
"git add"
],
"src/**/*.{ts,tsx}": [
"npm run lint-fix",
"git add"
],
"**/.md": [
"markdownlint"
]
},
"ignore": [
"package.json",
"package-lock.json"
]
}
}