This repository was archived by the owner on Mar 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 2.93 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "Redbrick",
"homepage": "https://redbrick.dcu.ie/",
"author": "Redbrick",
"description": "Redbrick - DCU's Computer Networking Society",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "gatsby build --log-pages",
"dev": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx,css,mdx} *.{json,js,md}",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"clean": "gatsby clean",
"deploy": "netlify deploy",
"start": "gatsby serve"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.5.1",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gatsby": "^2.21.9",
"gatsby-image": "^2.2.36",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-manifest": "^2.2.33",
"gatsby-plugin-mdx": "^1.0.62",
"gatsby-plugin-offline": "^3.0.29",
"gatsby-plugin-preact": "^3.3.0",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.3.7",
"gatsby-source-filesystem": "^2.1.42",
"gatsby-source-google-spreadsheets": "^3.0.8",
"gatsby-transformer-sharp": "^2.3.9",
"preact": "^10.4.1",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-images-viewer": "^1.6.2",
"typescript": "^3.7.3"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"airbnb",
"plugin:react/recommended",
"prettier",
"prettier/react"
],
"plugins": [
"prettier"
],
"rules": {
"arrow-parens": [
"error",
"as-needed"
],
"func-style": [
"error",
"declaration",
{
"allowArrowFunctions": true
}
],
"import/extensions": [
"error",
"always",
{
"jsx": "ignorePackages",
"js": "ignorePackages"
}
],
"import/prefer-default-export": 0,
"linebreak-style": [
"error",
"unix"
],
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-use-before-define": [
"error",
{
"functions": false
}
],
"react/jsx-filename-extension": [
2,
{
"extensions": [
".js",
".jsx"
]
}
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}