-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "2019.jsconfbp.com",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npm run dev",
"predev": "npm run gdpr",
"dev": "npx gatsby develop",
"postdev": "npm run format",
"prebuild": "npm run gdpr",
"build": "npx gatsby build",
"postbuild": "npm run copy",
"copy": "cp -Rf CNAME public",
"develop": "gatsby develop",
"format": "npx prettier --write \"src/**/*.js\"",
"gdpr": "node scripts/gdpr-generate.js"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^4.2.1",
"@mdx-js/mdx": "^1.0.16",
"@mdx-js/react": "^1.0.16",
"@mdx-js/tag": "^0.20.3",
"classnames": "^2.2.6",
"gatsby": "^2.3.25",
"gatsby-image": "^2.0.39",
"gatsby-mdx": "^0.6.3",
"gatsby-plugin-feed": "^2.1.1",
"gatsby-plugin-force-trailing-slashes": "^1.0.4",
"gatsby-plugin-google-analytics": "^2.0.18",
"gatsby-plugin-manifest": "^2.0.29",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-sass": "^2.0.11",
"gatsby-plugin-sharp": "^2.0.35",
"gatsby-source-filesystem": "^2.0.29",
"gatsby-transformer-sharp": "^2.1.18",
"isomorphic-unfetch": "3.0.0",
"node-sass": "^4.11.0",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"watch": {
"build": "src/**/*.*"
}
}