-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 3.3 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
{
"name": "overture",
"description": "",
"version": "1.5.2",
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0"
},
"dependencies": {
"@babel/core": "^7.17.4",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"algoliasearch": "^4.10.5",
"basscss": "^8.1.0",
"bulma": "^0.9.3",
"flat": "^5.0.2",
"gatsby": "^4.25.7",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-anchor-links": "^1.2.1",
"gatsby-plugin-image": "^2.7.0",
"gatsby-plugin-manifest": "^4.7.0",
"gatsby-plugin-matomo": "^0.15.2",
"gatsby-plugin-mdx": "^3.7.1",
"gatsby-plugin-netlify": "^4.1.0",
"gatsby-plugin-nprogress": "^4.7.0",
"gatsby-plugin-offline": "^5.7.0",
"gatsby-plugin-react-helmet": "^5.7.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^5.7.0",
"gatsby-plugin-sharp": "^4.7.0",
"gatsby-plugin-sitemap": "^5.7.0",
"gatsby-remark-copy-linked-files": "^5.7.0",
"gatsby-remark-images": "^6.7.0",
"gatsby-source-filesystem": "^4.7.0",
"gatsby-source-git": "^1.1.0",
"gatsby-transformer-remark": "^5.7.0",
"gatsby-transformer-sharp": "^4.7.0",
"gatsby-transformer-yaml": "^4.7.0",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"lodash.find": "^4.6.0",
"lodash.startcase": "^4.4.0",
"mdx-utils": "^0.2.0",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"proper-url-join": "^2.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-instantsearch-dom": "^6.12.1",
"react-markdown": "^5.0.2",
"react-modal": "^3.14.3",
"react-waypoint": "^10.1.0",
"remark-gfm": "^1.0.0",
"remark-slug": "^6.1.0",
"sass": "^1.49.7",
"scroll-to-element": "^2.0.3",
"sharp": "^0.30.1"
},
"license": "AGPL-3.0-or-later",
"main": "n/a",
"scripts": {
"build-prod": "netlify build --context production",
"build-qa": "netlify build --context branch-deploy",
"build-preview": "netlify build --context deploy-preview",
"build": "gatsby build --prefix-paths",
"deploy-draft-prod": "npm run build-prod && netlify deploy -o",
"deploy": "npm run build-qa && netlify deploy -o",
"dev": "gatsby develop",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"{gatsby-*.js,src/**/*.js}\"",
"lint": "eslint --ext js,jsx --ignore-path .gitignore .",
"prod": "npm run build-prod && npm run serve",
"qa": "npm run build-qa && npm run serve",
"serve": "NODE_ENV=production gatsby serve",
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-config-standard-trailing-commas": "^6.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-standard": "^4.0.0",
"prettier": "^2.5.1"
},
"overrides": {
"graphql": "^15.4.0",
"graphql-compose": "^7.25.0",
"webpack": "^5.24.2",
"object-path": "0.11.8"
}
}