-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 loc) · 3.19 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
{
"name": "hack-your-future-belgium",
"private": true,
"description": "The Hack Your Future Belgium website.",
"version": "0.1.0",
"author": "HYF <[email protected]>",
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@stripe/stripe-js": "^1.38.1",
"@testing-library/cypress": "^9.0.0",
"cypress": "^12.7.0",
"gatsby": "^5.3.3",
"gatsby-image": "^3.11.0",
"gatsby-plugin-google-tagmanager": "^5.3.1",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-netlify-cms": "^7.3.0",
"gatsby-plugin-offline": "^6.3.1",
"gatsby-plugin-react-helmet": "^6.7.0",
"gatsby-plugin-sharp": "^5.7.0",
"gatsby-plugin-styled-components": "^6.3.0",
"gatsby-source-filesystem": "^5.3.1",
"gatsby-source-stripe": "^4.0.0",
"gatsby-transformer-sharp": "^5.7.0",
"lodash.debounce": "^4.0.8",
"netlify-cms-app": "^2.15.72",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"sharp": "^0.31.3",
"start-server-and-test": "^2.0.0",
"styled-components": "^5.3.6"
},
"keywords": [
"hackyourfuture",
"code"
],
"scripts": {
"build:sb": "build-storybook",
"build": "gatsby build",
"clean": "gatsby clean",
"cy:open": "cypress open",
"cy:run": "cypress run",
"deploy": "gatsby build && gh-pages -d public",
"dev:sb": "start-storybook -p 6006",
"dev": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint src/",
"serve": "gatsby serve",
"start": "npm run develop",
"test:e2e:headless": "start-server-and-test develop http://localhost:8000 cy:run",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:sb": "test-storybook",
"develop": "gatsby develop"
},
"repository": {
"type": "git",
"url": "https://github.com/HackYourFutureBelgium/website"
},
"bugs": {
"url": "https://github.com/HackYourFutureBelgium/website/issues"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-coverage": "^0.0.8",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/test-runner": "^0.9.4",
"@storybook/testing-library": "^0.0.13",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.14.1",
"@types/react": "^17.0.53",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-loader": "^8.3.0",
"eslint": "^8.35.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-storybook": "^0.6.11",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"overrides": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=18.0.0 <19.0.0"
}
}