-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.02 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
{
"name": "floorplan",
"description": "A complete boilerplate for a serverless & static tradeshow floorplan web app that is blazingly fast, simple & secure",
"version": "2.0.0",
"author": "Ryan Garant",
"dependencies": {
"@firebase/functions": "^0.1.0",
"firebase": "^4.12.1",
"formik": "^0.11.11",
"gatsby-link": "^1.6.40",
"prop-types": "^15.6.1",
"lodash": "^4.17.12",
"react-addons-css-transition-group": "^15.6.2",
"react-helmet": "^5.2.0",
"react-measure": "^2.0.2",
"react-modal": "^3.3.2",
"react-redux": "^5.0.7",
"react-toastify": "^3.4.3",
"react-tooltip": "^3.8.1",
"redux": "^3.7.2",
"styled-components": "^3.2.5",
"styled-theme": "^0.3.3",
"styled-tools": "^0.4.0",
"yup": "^0.24.1",
"snyk": "^1.244.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"gatsby": "^1.9.127",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-react-next": "^1.0.11",
"gatsby-plugin-resolve-src": "^1.0.0",
"gatsby-plugin-styled-components": "^2.0.9",
"prettier": "^1.8.2",
"prettier-eslint-cli": "^4.7.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"format": "prettier-eslint --write \"src/**/*.js\"",
"copy": "copyfiles config.js functions",
"deploy": "firebase deploy",
"deploy:functions": "npm run copy && firebase deploy --only functions",
"deploy:hosting": "firebase deploy --only hosting",
"logs": "firebase functions:log",
"shell": "firebase functions:shell",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}