-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.1 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.1 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
{
"name": "org-programmingtalks",
"description": "An unopinionated, curated list of the best programming talks on the Internet.",
"version": "1.0.0",
"author": {
"name": "Mathias Schilling",
"email": "[email protected]",
"url": "https://www.matchilling.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/matchilling/org.programmingtalks.www/issues"
},
"homepage": "https://www.programmingtalks.org",
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^6.2.0",
"fuse.js": "^3.3.0",
"gatsby": "^2.0.73",
"gatsby-link": "^2.0.7",
"gatsby-plugin-fullstory": "^2.0.4",
"gatsby-plugin-google-analytics": "^2.0.8",
"gatsby-plugin-react-helmet": "^3.0.4",
"gatsby-plugin-sass": "^2.0.7",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "^2.0.15",
"gatsby-plugin-sitemap": "^2.0.3",
"gatsby-source-filesystem": "^2.0.12",
"gatsby-transformer-json": "^2.1.6",
"gatsby-transformer-sharp": "^2.1.9",
"gh-pages": "^2.0.1",
"moment": "^2.23.0",
"node-sass": "^4.11.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"react-youtube": "^7.8.0",
"typography-theme-github": "^0.16.18",
"uuid": "^3.3.2",
"webpack": "^4.28.1"
},
"keywords": [
"gatsby"
],
"scripts": {
"build": "node ./script/create_search_index.js && node --max_old_space_size=12000 --stack-size=100000 ./node_modules/.bin/gatsby build --prefix-paths",
"deploy": "npm run build && gh-pages -d public",
"develop": "node ./script/create_search_index.js && gatsby develop",
"download:video": "node ./script/download_talk.js",
"format:data": "prettier --write 'data/**/*.json'",
"format:src": "prettier --write 'script/*' 'src/**/*.js' 'gatsby-*.js'",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-gatsby": "^0.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"react-test-renderer": "^16.7.0"
}
}