-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.12 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
{
"name": "givealunch",
"description": "Give a Lunch helps feed hungry hospital workers while supporting local business",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"gatsby",
"covid19"
],
"contributors": [
"Tyler Untisz <tuntisz@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/tuntisz/givealunch"
},
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"start": "gatsby serve --port ${PORT:-3000}",
"clean": "rimraf .cache public",
"lint": "npm run tslint && npm run stylelint",
"tslint": "tslint --fix 'src/**/*.{ts,tsx}' -p .",
"stylelint": "stylelint 'src/**/*.scss' --syntax scss",
"deploy": "gatsby build && gh-pages -d public"
},
"dependencies": {
"airtable": "^0.8.1",
"gatsby": "2.1.23",
"gatsby-image": "2.0.31",
"gatsby-plugin-config": "1.0.7",
"gatsby-plugin-layout": "1.0.12",
"gatsby-plugin-manifest": "2.0.22",
"gatsby-plugin-react-helmet": "3.0.8",
"gatsby-plugin-react-svg": "2.1.0",
"gatsby-plugin-sharp": "2.0.25",
"gatsby-plugin-typescript": "2.0.10",
"gatsby-plugin-ueno": "2.0.1",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-airtable": "^2.1.0",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-sharp": "2.1.15",
"gh-pages": "^2.2.0",
"gsap": "2.1.2",
"gsap-tools": "1.0.9",
"lodash": "4.17.11",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-helmet": "5.2.0"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@types/airtable": "^0.5.7",
"@types/gsap": "1.20.2",
"@types/lodash": "4.14.122",
"@types/node": "11.10.4",
"@types/react": "16.8.6",
"@types/react-dom": "16.8.2",
"@types/react-helmet": "5.0.8",
"@ueno/stylelint-config": "1.1.2",
"@ueno/tslint-config": "1.0.5",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"rimraf": "2.6.3",
"stylelint": "9.10.1",
"tslint": "5.13.1",
"tslint-react": "3.6.0",
"typescript": "3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}