-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "2019-website",
"private": false,
"description": "Our website for VandyHacks VI.",
"version": "0.0.1",
"contributors": [
"Matt Leon <[email protected]> (https://mattleon.com)",
"Benjamin Cooper <[email protected]> (https://benc.io)",
"Kwuang Tang <[email protected]> (https://github.com/cktang88)"
],
"dependencies": {
"babel-plugin-styled-components": "^1.10.6",
"gatsby": "^2.15.7",
"gatsby-image": "^2.2.17",
"gatsby-plugin-manifest": "^2.2.13",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.6",
"gatsby-plugin-react-svg": "^2.1.2",
"gatsby-plugin-sharp": "^2.2.19",
"gatsby-plugin-styled-components": "^3.1.4",
"gatsby-source-filesystem": "^2.1.21",
"gatsby-transformer-sharp": "^2.2.13",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"styled-components": "^4.3.2",
"styled-reset": "^4.0.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
},
"keywords": [
"gatsby",
"react",
"vandyhacks",
"hackathon"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint --cache --report-unused-disable-directives --ext .js,.jsx src/",
"lint:fix": "npm run lint -- --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"repository": {
"type": "git",
"url": "https://github.com/VandyHacks/2019-website"
},
"bugs": {
"url": "https://github.com/VandyHacks/2019-website/issues"
}
}