-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.85 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
{
"name": "mhra-cpd-website",
"private": true,
"description": "MHRA Continuous Professional Development",
"version": "0.1.0",
"author": "Red Badger",
"bugs": {
"url": "https://github.com/MHRA/gatsby/issues"
},
"dependencies": {
"@mdx-js/mdx": "v1",
"@mdx-js/react": "v1",
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^4.15.1",
"gatsby-image": "^3.11.0",
"gatsby-plugin-csp": "^1.1.3",
"gatsby-plugin-manifest": "^4.15.0",
"gatsby-plugin-mdx": "^3.15.2",
"gatsby-plugin-offline": "^5.15.0",
"gatsby-plugin-react-helmet": "^5.15.0",
"gatsby-plugin-sharp": "^4.15.0",
"gatsby-plugin-sitemap": "^5.15.0",
"gatsby-plugin-styled-components": "^5.15.0",
"gatsby-plugin-typography": "^4.15.0",
"gatsby-remark-copy-linked-files": "^5.15.0",
"gatsby-remark-images": "^6.15.0",
"gatsby-remark-prismjs": "^6.15.0",
"gatsby-remark-responsive-iframe": "^5.15.0",
"gatsby-remark-smartypants": "^5.15.0",
"gatsby-source-filesystem": "^4.15.0",
"gatsby-transformer-json": "^4.15.0",
"gatsby-transformer-remark": "^5.15.0",
"gatsby-transformer-sharp": "^4.15.0",
"prismjs": "^1.28.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-ga": "^3.3.0",
"react-gtm-module": "^2.0.11",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-typography": "^0.16.20",
"styled-components": "^5.3.5",
"typeface-merriweather": "1.1.13",
"typeface-montserrat": "1.1.13",
"typography": "^0.16.21",
"universal-cookie": "^4.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.17.12",
"@babel/preset-react": "^7.17.12",
"babel-jest": "^28.1.0",
"babel-preset-gatsby": "^2.15.0",
"cypress": "^9.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"minimatch": "^5.1.0",
"pa11y-ci": "^3.0.1",
"prettier": "^2.6.2",
"react-test-renderer": "^18.1.0",
"wait-on": "^6.0.1"
},
"homepage": "https://github.com/MHRA/products#readme",
"keywords": [
"gatsby"
],
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/MHRA/products.git"
},
"scripts": {
"a11y": "yarn dev --verbose & wait-on http://localhost:8000; server_pid=$!; yarn run pa11y-ci; test_exit_code=$?; kill \"$server_pid\"; exit \"$test_exit_code\";",
"build": "gatsby build --prefix-paths",
"clean": "gatsby clean",
"dev": "gatsby develop",
"pretty": "prettier --write \"**/*.{js,jsx,json,md}\"",
"serve": "gatsby serve",
"start": "yarn run develop",
"test-e2e": "yarn dev & wait-on http://localhost:8000; server_pid=$!; yarn run cypress run; test_exit_code=$?; kill \"$server_pid\"; exit \"$test_exit_code\";",
"test": "yarn jest",
"test:ci": "yarn jest --coverage --ci"
}
}