-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.03 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": "coding-bunker-website",
"description": "WIP Site",
"version": "0.1.0",
"author": "a lot of people",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"develop": "gatsby develop -p 8080",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src plugins",
"lint:fix": "npm run lint -- --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "5.14.0",
"@fortawesome/react-fontawesome": "0.1.11",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"axios": "^0.21.1",
"bootstrap": "^4.5.0",
"dotenv": "^8.2.0",
"gatsby": "^2.32.8",
"gatsby-image": "^2.4.8",
"gatsby-plugin-fontawesome-css": "1.0.0",
"gatsby-plugin-manifest": "^2.4.13",
"gatsby-plugin-mdx": "^1.2.35",
"gatsby-plugin-offline": "^3.2.12",
"gatsby-plugin-react-helmet": "^3.3.5",
"gatsby-plugin-react-leaflet": "^2.0.13",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.13",
"gatsby-plugin-typescript": "^2.8.0",
"gatsby-plugin-typography": "^2.5.10",
"gatsby-source-datocms": "^2.3.0",
"gatsby-source-filesystem": "^2.3.25",
"gatsby-transformer-remark": "^2.8.28",
"gatsby-transformer-sharp": "^2.5.6",
"leaflet": "^1.7.1",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-bootstrap": "^1.2.2",
"react-countup": "^4.3.3",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.2.0",
"react-leaflet": "^3.0.0",
"react-typography": "^0.16.19",
"react-visibility-sensor": "^5.1.1",
"styled-components": "^5.2.1",
"typography": "^0.16.19"
},
"devDependencies": {
"@types/leaflet": "^1.5.19",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"typescript": "^4.1.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Coding-Bunker/official-website.git"
},
"bugs": {
"url": "https://github.com/Coding-Bunker/official-website/issues"
},
"homepage": "https://github.com/Coding-Bunker/official-website#readme"
}