-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.46 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
{
"private": true,
"name": "conference-website",
"version": "1.0.0",
"scripts": {
"clean": "rimraf .cache public built-lambda",
"build": "run-p build:**",
"build:app": "npm run clean && gatsby build",
"build:functions": "netlify-lambda build ./functions",
"develop": "npm run clean && gatsby develop",
"start": "run-p start:**",
"start:app": "npm run develop",
"start:functions": "netlify-lambda serve ./functions",
"serve": "gatsby serve",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.8.4",
"@mdx-js/mdx": "^1.5.5",
"@mdx-js/react": "^1.5.5",
"babel-jest": "^25.1.0",
"babel-preset-gatsby": "^0.2.29",
"dotenv": "^8.0.0",
"eventbrite": "^1.2.1",
"gatsby": "^2.19.18",
"gatsby-plugin-google-analytics": "^2.1.35",
"gatsby-plugin-netlify": "^2.1.32",
"gatsby-plugin-offline": "^3.0.35",
"gatsby-theme-conference": "^0.0.3",
"jest": "^25.1.0",
"netlify-lambda": "^1.4.13",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"typescript": "^3.7.5"
},
"repository": {
"type": "git",
"url": "https://github.com/kwelch/conference-website"
},
"bugs": {
"url": "https://github.com/kwelch/conference-website/issues"
},
"devDependencies": {
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-sharp": "^2.3.14"
}
}