This repository was archived by the owner on Jan 9, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.3 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.3 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
{
"name": "ruby-meetup-online",
"description": "Don't have any active Ruby meetups near you? Don't want to, or can't, go even if there are? We want to bring the joy of congregating with your Ruby friends to you with online Ruby meetups!",
"version": "0.0.1",
"author": "Andrew Mason <andrewmcodes@protonmail.com>",
"homepage": "https://rubymeetup.online/",
"repository": {
"type": "git",
"url": "https://github.com/andrewmcodes/ruby-meetup-online"
},
"bugs": {
"url": "https://github.com/andrewmcodes/ruby-meetup-online/issues"
},
"dependencies": {
"gatsby": "2.19.28",
"gatsby-plugin-mailchimp": "^5.1.2",
"gatsby-plugin-manifest": "2.2.42",
"gatsby-plugin-offline": "3.0.35",
"gatsby-plugin-postcss": "2.1.20",
"gatsby-plugin-purgecss": "4.0.1",
"gatsby-plugin-react-helmet": "3.1.22",
"gatsby-plugin-sharp": "2.4.5",
"gatsby-plugin-sitemap": "^2.2.28",
"prop-types": "15.7.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-helmet": "5.2.1",
"react-script-tag": "^1.1.2",
"react-social-sharing": "^3.0.1"
},
"keywords": [
"ruby",
"rails",
"meetup",
"online"
],
"license": "MIT",
"scripts": {
"analyze:lint": "eslint --ext .jsx --ext .js .",
"analyze:prettier": "prettier --list-different \"**/*.{css,js,jsx,json,md}\"",
"analyze:language": "alex ./",
"analyze": "yarn run analyze:lint && yarn run analyze:prettier && yarn run analyze:language",
"fix:lint": "eslint --ext .jsx --ext .js . --fix",
"fix:prettier": "prettier --write \"**/*.{css,js,jsx,json,md}\"",
"fix": "yarn run fix:lint && yarn run fix:prettier",
"build": "gatsby build",
"develop": "gatsby develop",
"start": "yarn run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"devDependencies": {
"@tailwindcss/ui": "^0.1.3",
"alex": "^8.1.1",
"autoprefixer": "9.7.4",
"babel-eslint": "10.1.0",
"cssnano": "4.1.10",
"eslint": "6.8.0",
"eslint-loader": "3.0.3",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "7.18.3",
"gatsby-plugin-eslint": "2.0.8",
"prettier": "1.19.1",
"tailwindcss": "1.2.0",
"tailwindcss-animations": "^2.0.0",
"tailwindcss-dark-mode": "^1.1.2",
"url-join": "^4.0.1"
}
}