-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
{
"name": "airtable-netlify-short-urls",
"version": "1.0.0",
"private": true,
"description": "URL shortener with an airtable backend",
"author": "Cristian Moreno <[email protected]> (http://khriztianmoreno.dev/)",
"main": "index.js",
"dependencies": {
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"airtable": "^0.7.2",
"axios": "^0.21.1",
"babel-plugin-emotion": "^10.0.17",
"dotenv": "^8.1.0",
"emotion-theming": "^10.0.17",
"gatsby": "^2.13.73",
"gatsby-image": "^2.2.10",
"gatsby-plugin-emotion": "^4.1.5",
"gatsby-plugin-manifest": "^2.2.6",
"gatsby-plugin-offline": "^2.2.7",
"gatsby-plugin-react-helmet": "^3.1.4",
"gatsby-plugin-sharp": "^2.2.13",
"gatsby-source-filesystem": "^2.1.11",
"gatsby-transformer-sharp": "^2.2.7",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-particles-js": "^2.7.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2"
},
"keywords": [
"gatsby",
"netlify",
"netlify-functions",
"airtable"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "rm -rf .cache && rm -rf ./public",
"develop": "node --max_old_space_size=4096 ./node_modules/.bin/gatsby develop --host 0.0.0.0 --port 8000",
"start": "yarn clean && npm run develop",
"serve": "gatsby serve"
},
"repository": {
"type": "git",
"url": "https://github.com/khriztianmoreno/ssoon-short-urls"
},
"bugs": {
"url": "https://github.com/khriztianmoreno/ssoon-short-urls/issues"
}
}