-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.29 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
{
"name": "@hoverkraft/landing-page",
"private": true,
"description": "Landing page for Hoverkraft project",
"version": "0.1.0",
"author": "Hoverkraft <[email protected]>",
"dependencies": {
"bootstrap": "^5.3.1",
"gatsby": "^5.13.1",
"gatsby-plugin-image": "^3.13.0",
"gatsby-plugin-manifest": "^5.13.0",
"gatsby-plugin-minify-html": "^1.0.4",
"gatsby-plugin-offline": "^6.13.0",
"gatsby-plugin-plausible": "^0.0.7",
"gatsby-plugin-purgecss": "^6.2.1",
"gatsby-plugin-react-i18next": "^3.0.1",
"gatsby-plugin-sass": "^6.13.0",
"gatsby-plugin-sharp": "^5.13.0",
"gatsby-plugin-sitemap": "^6.13.0",
"gatsby-plugin-webfonts": "^2.3.2",
"gatsby-source-filesystem": "^5.13.0",
"gsap": "^3.12.2",
"i18next": "^23.7.16",
"node-sass": "^7.0.3",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-country-flag": "^3.1.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"babel-jest": "^29.6.4",
"babel-preset-gatsby": "^3.12.0",
"identity-obj-proxy": "^3.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^29.6.4",
"lighthouse-plugin-field-performance": "^3.0.0",
"prettier": "3.3.2",
"prettier-plugin-import-sort": "^0.0.7",
"react-test-renderer": "^18.2.0"
},
"keywords": [
"hoverkraft",
"landing-page"
],
"license": "0BSD",
"scripts": {
"build": "yarn clean && GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --prefix-paths --log-pages",
"develop": "gatsby develop",
"lint": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "yarn develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"jest": "jest --detectOpenHandles --forceExit",
"test": "yarn jest --maxWorkers=50%",
"test:watch": "yarn jest --watch --maxWorkers=25%",
"test:cov": "yarn jest --coverage",
"test:ci": "yarn test:cov --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/hoverkraft/landing-page"
},
"bugs": {
"url": "https://github.com/hoverkraft/landing-page/issues"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}