-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
75 lines (75 loc) · 2.35 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
{
"name": "js-a11y-workshop",
"description": "Accessibility in JavaScript Applications",
"version": "1.0.0",
"author": "Marcy Sutton <[email protected]>",
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"autoprefixer": "^9.6.1",
"downshift": "^3.2.10",
"emotion": "^10.0.14",
"extract-text-webpack-plugin": "^3.0.2",
"focus-visible": "^5.0.2",
"gatsby": "^2.13.25",
"gatsby-image": "^2.2.6",
"gatsby-plugin-manifest": "^2.2.1",
"gatsby-plugin-mdx": "^1.0.7",
"gatsby-plugin-offline": "^2.2.1",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sass": "^2.1.3",
"gatsby-plugin-sharp": "^2.2.7",
"gatsby-remark-prismjs": "^3.3.3",
"gatsby-source-filesystem": "^2.1.5",
"gatsby-theme-mdx-deck": "^3.0.8",
"gatsby-transformer-sharp": "^2.2.3",
"match-sorter": "^4.0.1",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"sass-loader": "^7.1.0",
"starwars-names": "^1.6.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"serve": "gatsby serve",
"develop": "gatsby develop",
"deploy": "gatsby clean && gatsby build --prefix-paths && gh-pages -d public",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.js\"",
"test": "jest",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "CYPRESS_SUPPORT=y start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run"
},
"devDependencies": {
"@testing-library/cypress": "^4.0.5",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^8.0.6",
"axe-core": "^3.3.1",
"babel-jest": "^24.8.0",
"babel-preset-gatsby": "^0.2.7",
"cypress": "^3.4.1",
"cypress-axe": "^0.5.1",
"gh-pages": "^2.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-transform-css": "^2.0.0",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"start-server-and-test": "^1.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/marcysutton/js-a11y-workshop"
}
}