-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.32 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.32 KB
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": "level-5-openbook",
"description": "The Open Book of Level 5.",
"version": "1.0.0",
"private": true,
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"clean": "rimraf public",
"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": "tslint 'src/**/*.{ts,tsx}' -p tsconfig.json",
"start": "serve -s public",
"test": "npm run type-check && npm run lint",
"type-check": "tsc"
},
"dependencies": {
"@kata-kit/form": "^0.6.3",
"@reach/skip-nav": "^0.1.3",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.2",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"date-fns": "^1.30.1",
"dotenv": "^7.0.0",
"gatsby": "2.8.8",
"gatsby-image": "^2.0.37",
"gatsby-plugin-canonical-urls": "2.0.13",
"gatsby-plugin-catch-links": "2.0.15",
"gatsby-plugin-google-analytics": "^2.1.1",
"gatsby-plugin-lunr": "1.5.1",
"gatsby-plugin-manifest": "2.0.26",
"gatsby-plugin-netlify": "2.0.17",
"gatsby-plugin-netlify-cache": "1.2.0",
"gatsby-plugin-nprogress": "2.0.10",
"gatsby-plugin-react-helmet": "3.0.12",
"gatsby-plugin-resolve-src": "2.0.0",
"gatsby-plugin-sharp": "2.0.32",
"gatsby-plugin-styled-components": "3.1.0",
"gatsby-plugin-typescript": "2.1.0",
"gatsby-remark-autolink-headers": "2.0.16",
"gatsby-remark-copy-linked-files": "2.0.13",
"gatsby-remark-images": "3.0.14",
"gatsby-remark-prismjs": "3.2.11",
"gatsby-remark-responsive-iframe": "2.1.1",
"gatsby-remark-smartypants": "2.0.9",
"gatsby-source-filesystem": "2.0.39",
"gatsby-transformer-json": "2.1.11",
"gatsby-transformer-remark": "2.3.12",
"gatsby-transformer-sharp": "2.1.10",
"lodash.isnil": "^4.0.0",
"lodash.truncate": "^4.4.2",
"polished": "^3.2.0",
"prism-themes": "^1.1.0",
"prismjs": "^1.16.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-helmet": "^5.2.0",
"react-media-match": "^1.8.3",
"rehype-react": "^3.1.0",
"remove-markdown": "^0.3.0",
"styled-components": "^4.3.2",
"styled-normalize": "^8.0.6",
"styled-system": "^4.2.2",
"typeface-barlow": "^0.0.71",
"typescript": "3.5.1",
"utility-types": "^3.7.0"
},
"devDependencies": {
"@types/classnames": "^2.2.8",
"@types/history": "^4.7.2",
"@types/node": "^12.0.10",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@types/styled-components": "^4.1.16",
"@types/styled-system": "^4.2.1",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.0.1",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"serve": "^11.0.2",
"tslint": "^5.18.0",
"tslint-config-kata": "^1.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
},
"resolutions": {
"@types/react": "16.8.22",
"@types/react-dom": "16.8.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}