-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.62 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "midway-community-church-website",
"private": true,
"description": "Our church website, built with Gatsby",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"functions:types": "tsc --noEmit -p functions/tsconfig.json",
"sanity": "cd content && yarn sanity",
"sanity:deploy": "yarn sanity graphql deploy --no-playground --generation gen2 && SANITY_STUDIO_API_DATASET=staging yarn sanity graphql deploy --no-playground --generation gen2 && yarn sanity deploy",
"sanity:start": "yarn sanity start --port 4444",
"sanity:types": "yarn tsc -p content/tsconfig.json",
"codegen": "graphql-codegen",
"develop": "gatsby develop -H 0.0.0.0",
"format:fix": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css}' 'functions/*.ts'",
"format:check": "prettier --check 'src/**/*.{js,jsx,ts,tsx,css}' 'functions/*.ts'",
"deps:check": "madge --ts-config tsconfig.json -c src/**/*",
"list-pages": "echo \"pages.forEach(p => console.log(p[0]))\" | gatsby repl",
"ci": "yarn test && yarn codegen && yarn types && yarn format:check && yarn deps:check",
"types": "yarn tsc && yarn sanity:types && yarn functions:types",
"start": "yarn develop",
"serve": "gatsby serve",
"check-upgrades": "echo \"\\nRoot:\\n\" && yarn outdated; echo \"\\n\\nSanity:\\n\" && cd content && yarn outdated; echo",
"test": "jest",
"postinstall": "patch-package"
},
"dependencies": {
"@fullcalendar/core": "^5.8.0",
"@fullcalendar/google-calendar": "^5.8.0",
"@fullcalendar/list": "^5.8.0",
"@fullcalendar/react": "^5.8.0",
"@graphql-codegen/cli": "^2.0.0",
"@graphql-codegen/typescript": "^2.0.0",
"@graphql-codegen/typescript-operations": "^2.0.0",
"@loadable/component": "^5.15.0",
"@netlify/functions": "^1.0.0",
"@rooks/use-window-size": "^4.11.2",
"@sanity/block-content-to-react": "3.x.x",
"@sanity/cli": "^2.12.2",
"@types/jest": "^29.0.0",
"@types/loadable__component": "^5.13.4",
"@types/react-dom": "^18.0.0",
"@types/react-helmet": "^6.0.0",
"@types/react-modal": "^3.10.1",
"@types/react-plyr": "^2.1.0",
"@types/styled-components": "^5.1.11",
"@vimeo/player": "^2.15.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^2.0.0",
"date-fns": "^2.22.1",
"dotenv": "^16.0.0",
"encoding": "^0.1.13",
"gatsby": "^4.0.0",
"gatsby-plugin-facebook-pixel": "^1.0.8",
"gatsby-plugin-feed": "^4.0.0",
"gatsby-plugin-gatsby-cloud": "^4.8.1",
"gatsby-plugin-google-analytics": "^4.0.0",
"gatsby-plugin-image": "^2.0.0",
"gatsby-plugin-layout": "^3.0.0",
"gatsby-plugin-module-resolver": "^1.0.3",
"gatsby-plugin-netlify": "^5.0.0",
"gatsby-plugin-react-helmet": "^5.0.0",
"gatsby-plugin-styled-components": "^5.0.0",
"gatsby-source-sanity": "^7.0.0",
"md5-slim": "^1.0.0",
"node-fetch": "^3.0.0",
"patch-package": "^6.2.2",
"polished": "^4.1.3",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.3.2",
"query-string": "^7.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-modal": "^3.14.3",
"react-parallax": "^3.3.0",
"react-plyr": "^2.2.0",
"styled-components": "^5.3.0",
"typescript": "~4.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"devDependencies": {
"babel-jest": "^29.0.0",
"babel-preset-gatsby": "^2.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"madge": "^5.0.1"
}
}