-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.15 KB
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
{
"name": "overture",
"description": "",
"version": "1.5.2",
"engines": {
"npm": ">=10.0.0",
"node": ">=22.0.0"
},
"dependencies": {
"@babel/core": "^7.17.4",
"basscss": "^8.1.0",
"bulma": "^0.9.3",
"dotenv": "^8.6.0",
"gatsby": "^4.25.7",
"gatsby-plugin-anchor-links": "^1.2.1",
"gatsby-plugin-manifest": "^4.7.0",
"gatsby-plugin-matomo": "^0.15.2",
"gatsby-plugin-netlify": "^4.1.0",
"gatsby-plugin-nprogress": "^4.7.0",
"gatsby-plugin-react-helmet": "^5.7.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^5.7.0",
"gatsby-plugin-sitemap": "^5.7.0",
"gatsby-source-filesystem": "^4.7.0",
"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-modal": "^3.14.3",
"react-waypoint": "^10.1.0",
"sass": "^1.49.7",
"scroll-to-element": "^2.0.3"
},
"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 .",
"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": {
"@eslint/js": "^9.39.5",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.9.0",
"prettier": "^2.5.1"
},
"overrides": {
"graphql": "^15.4.0",
"graphql-compose": "^7.25.0",
"webpack": "^5.24.2",
"object-path": "0.11.8"
}
}