This repository was archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.6 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.6 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
{
"name": "hubblr-website",
"version": "1.0.0",
"dependencies": {
"@hubblr/react-side-content-accordion": "^1.0.3",
"@reach/router": "^1.3.4",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"browser-cookies": "^1.2.0",
"cssnano": "4.1.10",
"eslint": "7.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"flat": "^5.0.2",
"framer-motion": "^2.9.4",
"gatsby": "^2.24.92",
"gatsby-plugin-eslint": "2.0.8",
"gatsby-plugin-ffmpeg": "^0.3.1",
"gatsby-plugin-manifest": "^2.4.34",
"gatsby-plugin-offline": "3.2.31",
"gatsby-plugin-postcss": "2.3.13",
"gatsby-plugin-react-helmet": "3.3.14",
"gatsby-plugin-sass": "^2.6.0",
"gatsby-plugin-sharp": "^2.9.1",
"gatsby-source-airtable": "^2.1.1",
"gatsby-source-filesystem": "^3.4.0",
"gatsby-theme-i18n": "^1.0.4",
"gatsby-transformer-ffmpeg": "^0.3.8",
"gatsby-transformer-sharp": "^2.7.0",
"gatsby-video": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-autosize-textarea": "^7.1.0",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-intl": "^5.10.6",
"react-responsive": "^8.1.1",
"sass": "^1.29.0",
"smoothscroll-polyfill": "^0.4.4",
"sweetalert2": "^10.10.4",
"uuid": "^8.3.1",
"validator": "^13.1.17"
},
"scripts": {
"analyze:lint": "eslint --ext .jsx --ext .js .",
"analyze:prettier": "prettier --list-different \"**/*.{css,js,jsx,json,md}\"",
"analyze": "npm run analyze:lint && npm run analyze:prettier",
"fix:lint": "eslint --ext .jsx --ext .js . --fix",
"fix:prettier": "prettier --write \"**/*.{css,js,jsx,json,md}\"",
"fix": "npm run fix:lint && npm run fix:prettier",
"build": "gatsby build",
"develop": "gatsby develop",
"dev": "npm run develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"devDependencies": {
"@tailwindcss/custom-forms": "0.2.1",
"@types/tailwindcss": "^2.0.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"tailwindcss": "1.9.1",
"tailwindcss-textshadow": "^2.1.3"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}