-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "a11y-coffee",
"private": true,
"description": "The introduction on web accessibility that I want to give every single web developer.",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"test:pa11y-ci": "./node_modules/.bin/pa11y-ci --config .pa11yci"
},
"dependencies": {
"@mdx-js/mdx": "^1.5.9",
"@mdx-js/react": "^1.5.9",
"@theme-ui/prism": "^0.3.0",
"gatsby": "^2.20.36",
"gatsby-plugin-mdx": "^1.1.11",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.2.19",
"gatsby-plugin-theme-ui": "^0.3.0",
"gatsby-remark-a11y-emoji": "^1.0.1",
"gatsby-remark-images": "^3.1.20",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-source-filesystem": "^2.1.21",
"gatsby-theme-style-guide": "^0.3.1",
"gatsby-transformer-remark": "^2.6.21",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-icons": "^3.10.0",
"remark-slug": "^5.1.2",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"husky": "^4.2.5",
"pa11y-ci": "^2.3.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn test:pa11y-ci"
}
},
"repository": {
"type": "git",
"url": "https://github.com/amberleyromo/a11y-coffee"
},
"bugs": {
"url": "https://github.com/amberleyromo/a11y-coffee/issues"
}
}