forked from it-vegard/a11y-reference-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.73 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
{
"name": "a11y-reference-website",
"private": true,
"description": "A site in both accessible and inaccessible versions, for training, research and educational purposes",
"version": "0.1.0",
"author": "Vegard Haugstvedt <[email protected]>",
"dependencies": {
"@mdx-js/mdx": "1.5.9",
"axe-core": "3.3.2",
"classnames": "2.2.6",
"docz": "2.3.0",
"esm": "3.2.25",
"gatsby": "^2.25.0",
"gatsby-image": "2.4.14",
"gatsby-plugin-i18n": "1.0.1",
"gatsby-plugin-manifest": "2.4.21",
"gatsby-plugin-mdx": "1.2.33",
"gatsby-plugin-netlify": "2.3.11",
"gatsby-plugin-offline": "3.2.21",
"gatsby-plugin-react-helmet": "3.3.10",
"gatsby-plugin-sharp": "2.6.24",
"gatsby-source-filesystem": "2.3.23",
"gatsby-theme-docz": "2.3.1",
"gatsby-transformer-sharp": "2.5.12",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-helmet": "5.2.1",
"stylelint-config-standard": "19.0.0",
"svg-country-flags": "1.2.6",
"wcag-as-json": "0.0.1"
},
"devDependencies": {
"babel-jest": "26.2.2",
"babel-preset-gatsby": "0.5.4",
"cypress": "4.1.0",
"eslint": "6.4.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-jest": "23.8.2",
"husky": "3.0.5",
"identity-obj-proxy": "3.0.0",
"jest": "25.1.0",
"lint-staged": "9.2.5",
"prettier": "1.18.2",
"react-test-renderer": "16.13.0",
"start-server-and-test": "1.10.8",
"stylelint": "11.0.0",
"stylelint-config-prettier": "5.2.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"format": "prettier --write \"**/*.{js,jsx,json,md,mdx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run"
},
"repository": {
"type": "git",
"url": "https://github.com/it-vegard/a11y-reference-website"
},
"bugs": {
"url": "https://github.com/it-vegard/a11y-reference-website/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "jest"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"jest .",
"git add"
],
"*.{json,md,mdx}": [
"prettier --write",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
]
}
}