This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.4 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "codea",
"version": "1.0.0",
"description": "Te encanta compartir conocimiento a través de proyectos de código abierto, libros etc. Hemos decidido crear este proyecto para cualquier persona que quiera colaborar.",
"main": "gatsby-browser.js",
"author": "Jorge Luis Calleja Alvarado",
"license": "MIT",
"bugs": {
"url": "https://github.com/codea-team/codea/issues"
},
"homepage": "https://github.com/codea-team/codea#readme",
"repository": {
"type": "git",
"url": "https://github.com/codea-team/codea"
},
"scripts": {
"start": "gatsby serve",
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint --fix .",
"lint:staged": "npm run prettier && lint-staged",
"prettier": "prettier --ignore-path \"./.prettierignore\" --config .prettierrc --write \"./src/**/*.js\" \"./src/**/*.jsx\""
},
"lint-staged": {
"*.js": "npm run lint:eslint"
},
"pre-commit": "lint:staged",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"keywords": [
"codea",
"react",
"static-site",
"gatsby",
"blog",
"docs",
"javaScript"
],
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"classnames": "^2.2.6",
"clsx": "^1.0.3",
"disqus-react": "^1.0.5",
"gatsby": "^2.1.0",
"gatsby-image": "^2.0.29",
"gatsby-paginate": "^1.0.17",
"gatsby-plugin-catch-links": "^2.0.11",
"gatsby-plugin-feed": "^2.0.13",
"gatsby-plugin-google-analytics": "^2.0.14",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-netlify": "^2.0.10",
"gatsby-plugin-netlify-cache": "^1.0.0",
"gatsby-plugin-nprogress": "^2.0.8",
"gatsby-plugin-offline": "^2.0.23",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-sass": "^2.0.10",
"gatsby-plugin-sharp": "^2.0.30",
"gatsby-plugin-sitemap": "^2.0.5",
"gatsby-plugin-twitter": "^2.0.9",
"gatsby-remark-autolink-headers": "^2.0.14",
"gatsby-remark-code-titles": "^1.1.0-rc.0",
"gatsby-remark-copy-linked-files": "^2.0.9",
"gatsby-remark-emoji": "^0.0.2",
"gatsby-remark-emoji-unicode": "^0.1.0",
"gatsby-remark-graphviz": "^1.0.6",
"gatsby-remark-images": "^3.0.3",
"gatsby-remark-prismjs": "^3.2.4",
"gatsby-remark-responsive-iframe": "^2.0.9",
"gatsby-remark-smartypants": "^2.0.8",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-transformer-csv": "^2.0.7",
"gatsby-transformer-documentationjs": "^2.0.4",
"gatsby-transformer-remark": "^2.2.5",
"gatsby-transformer-sharp": "^2.1.17",
"gatsby-transformer-yaml": "^2.1.8",
"jss": "^9.8.7",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"parse-filepath": "^1.0.2",
"prismjs": "^1.15.0",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-helmet": "^5.2.0",
"react-jss": "^8.6.1",
"react-undraw-illustrations": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"core-js": "^2.6.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"lint-staged": "^8.1.1",
"node-sass": "^4.11.0",
"pre-commit": "^1.2.2",
"prettier": "^1.15.2"
}
}