This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
112 lines (112 loc) · 3.57 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
{
"name": "kata-platform-docs",
"description": "Documentation website for the Kata Platform.",
"version": "1.0.0",
"private": true,
"author": "Resi Respati <[email protected]>",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"resolutions": {
"webpack": "5.52.1"
},
"scripts": {
"build": "gatsby build",
"clean": "rimraf public && gatsby clean",
"commit": "git cz",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"dev": "gatsby develop",
"format": "npm run format:src && npm run format:docs",
"format:src": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:docs": "prettier --write \"docs/**/*.md\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"start": "serve -s public",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"dependencies": {
"@reach/skip-nav": "^0.16.0",
"@styled-system/should-forward-prop": "^5.1.5",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.13.2",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"date-fns": "^2.19.0",
"dotenv": "^8.2.0",
"gatsby": "3.10.2",
"gatsby-image": "^3.10.0",
"gatsby-plugin-canonical-urls": "3.10.0",
"gatsby-plugin-catch-links": "3.10.0",
"gatsby-plugin-google-analytics": "^3.10.0",
"gatsby-plugin-lunr": "1.5.2",
"gatsby-plugin-manifest": "3.10.0",
"gatsby-plugin-netlify": "3.10.0",
"gatsby-plugin-netlify-cache": "2.0.0",
"gatsby-plugin-nprogress": "3.10.0",
"gatsby-plugin-react-helmet": "4.10.0",
"gatsby-plugin-resolve-src": "2.1.0",
"gatsby-plugin-sharp": "3.10.2",
"gatsby-plugin-styled-components": "4.10.0",
"gatsby-plugin-typescript": "3.10.0",
"gatsby-remark-autolink-headers": "4.7.0",
"gatsby-remark-copy-linked-files": "4.7.0",
"gatsby-remark-images": "5.7.0",
"gatsby-remark-prismjs": "5.7.0",
"gatsby-remark-responsive-iframe": "^4.11.0",
"gatsby-remark-smartypants": "4.7.0",
"gatsby-source-filesystem": "3.10.0",
"gatsby-transformer-json": "3.10.0",
"gatsby-transformer-remark": "4.7.0",
"gatsby-transformer-sharp": "3.10.0",
"htmr": "^1.0.0",
"lodash.isnil": "^4.0.0",
"lodash.truncate": "^4.4.2",
"polished": "^4.1.1",
"prism-themes": "^1.6.0",
"prismjs": "^1.23.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-media-match": "^1.11.4",
"remove-markdown": "^0.3.0",
"styled-components": "^5.3.0",
"styled-normalize": "^8.0.7",
"styled-system": "^5.1.5",
"typeface-inter": "^3.18.1",
"typescript": "4.2.3",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/history": "^4.7.8",
"@types/node": "^14.14.35",
"@types/reach__router": "^1.3.7",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.9",
"@types/styled-system": "^5.1.10",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^1.7.0",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"serve": "^11.3.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}