-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 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
{
"name": "gatsby-starter-event-calendar",
"version": "1.0.0",
"description": "A customizable calendar event starter for Gatsby integrated with Google Spreadsheet",
"author": "Ema Suriano <emanuel.suriano@gmail.com>",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "yarn develop",
"lint": "eslint --ext .ts,.tsx src",
"ts-check": "tsc"
},
"dependencies": {
"babel-plugin-styled-components": "^2.0.7",
"babel-runtime": "^6.26.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"gatsby": "^3.14.6",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-sharp": "^3.14.3",
"gatsby-plugin-styled-components": "^4.14.0",
"gatsby-plugin-typescript": "^3.14.0",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-source-google-spreadsheets": "^3.0.8",
"gatsby-transformer-sharp": "^3.14.0",
"grommet": "^2.28.0",
"grommet-icons": "^4.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-github-corner": "^2.5.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/react-helmet": "^6.1.6",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^8.3.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"keywords": [
"gatsby",
"calendar",
"events",
"google spreadsheet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EmaSuriano/gatsby-starter-event-calendar.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/EmaSuriano/gatsby-starter-event-calendar/issues"
},
"homepage": "https://github.com/EmaSuriano/gatsby-starter-event-calendar#readme"
}