-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.64 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
101
102
103
104
{
"name": "hayahaycafe",
"private": true,
"description": "www.hayahaycafe.com based on gatsby",
"author": "Sven Jungnickel <svenjungnickel@googlemail.com>",
"homepage": "https://www.hayahaycafe.com",
"engines": {
"node": ">=20"
},
"dependencies": {
"bootstrap": "^5.3.3",
"fslightbox-react": "^1.7.6",
"gatsby": "^5.14.0",
"gatsby-plugin-catch-links": "^5.14.0",
"gatsby-plugin-google-analytics": "^5.14.0",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-netlify-cms": "^7.12.1",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-postcss": "^6.14.0",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-sass": "^6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-use-dark-mode": "^2.0.1",
"gatsby-remark-copy-linked-files": "^6.14.0",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-relative-images": "^2.0.5",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"gatsby-transformer-yaml": "^5.14.0",
"lodash": "^4.17.20",
"netlify-cms-app": "^2.15.72",
"netlify-plugin-gatsby-cache": "^0.3.2",
"postcss": "^8.4.49",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.6",
"react-dom": "^18.3.1",
"react-google-recaptcha": "^3.1.0",
"react-helmet": "^6.1.0",
"react-icons": "^5.4.0",
"react-reveal": "^1.2.2",
"react-switch": "^7.0.0",
"sass": "^1.83.0",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@lhci/cli": "^0.13.0",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/jest-runner": "^8.7.1",
"@testing-library/cypress": "^10.0.2",
"axe-core": "^4.10.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"babel-preset-gatsby": "^3.13.1",
"cypress": "^13.16.1",
"cypress-audit": "^1.1.0",
"cypress-axe": "^1.5.0",
"cypress-intellij-reporter": "^0.0.7",
"enzyme": "^3.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"netlify-cli": "^17.38.0",
"prettier": "^3.4.2",
"react-test-renderer": "^18.3.1",
"start-server-and-test": "^2.0.9"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --log-pages",
"develop": "gatsby develop",
"serve": "gatsby serve -p 9090",
"clean:develop": "gatsby clean && gatsby develop -H 0.0.0.0 -p 8000",
"clean:serve": "gatsby clean && gatsby build && gatsby serve -p 9090",
"netlifycms:proxyserver": "npx netlify-cms-proxy-server",
"format": "prettier --write src/**/*.{js,jsx}",
"test": "jest",
"lint": "eslint ./src/ && echo 'Lint complete.'",
"lint:fix": "eslint --fix ./src/ && echo 'Lint fix complete.'",
"cypress:open": "cypress open",
"cypress:run": "cypress run --record false",
"cypress:run:record": "cypress run --record",
"test:e2e": "start-server-and-test serve http://localhost:9090 cypress:open",
"test:e2e:ci": "start-server-and-test serve http://localhost:9090 cypress:run",
"test:e2e:ci:record": "start-server-and-test serve http://localhost:9090 cypress:run:record",
"lighthouse": "lhci autorun",
"stryker:run": "stryker run"
}
}