-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
114 lines (114 loc) · 3.61 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
108
109
110
111
112
113
114
{
"name": "ohjelmoinnin-mooc",
"engines": {
"node": "14.x"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"@rstacruz/gatsby-remark-component": "^1.2.0-pre.1",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.10.7",
"clsx": "^1.1.0",
"code-states-visualizer": "^0.1.1",
"color": "^3.1.1",
"commonmark": "^0.29.1",
"core-js": "^2.5.7",
"crowdsorcerer": "^0.1.79",
"fetch-ponyfill": "^6.0.2",
"focus-visible": "^4.1.5",
"gatsby": "^2.29.3",
"gatsby-plugin-catch-links": "^2.1.25",
"gatsby-plugin-i18next": "^1.1.10",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sharp": "^2.11.2",
"gatsby-plugin-sitemap": "^2.2.27",
"gatsby-plugin-styled-components": "^3.1.19",
"gatsby-remark-copy-linked-files": "^2.1.37",
"gatsby-remark-emojis": "^0.3.3",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.1.44",
"gatsby-remark-katex": "^3.7.0",
"gatsby-remark-mathjax": "^1.0.0",
"gatsby-remark-prismjs": "^3.3.31",
"gatsby-remark-smartypants": "^2.1.21",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-remark": "^2.6.53",
"graphql-request": "^3.4.0",
"i18next": "^17.3.1",
"i18next-browser-languagedetector": "^3.1.1",
"i18next-xhr-backend": "^3.2.2",
"interactjs": "^1.8.4",
"jquery": "^3.5.1",
"jss": "^9.8.7",
"katex": "^0.12.0",
"moment": "^2.24.0",
"moocfi-quizzes": "^0.9.10",
"pdf-slideshow": "^0.1.4",
"prismjs": "^1.19.0",
"react": "^16.12.0",
"react-content-loader": "^4.3.4",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-i18next": "^10.13.2",
"react-jss": "^8.6.1",
"react-motion": "^0.5.2",
"react-redux": "^7.2.0",
"react-scrollspy": "^3.4.2",
"react-toastify": "^7.0.3",
"react-youtube": "^7.9.0",
"recharts": "^1.8.5",
"redux-action-analytics": "0.0.3",
"redux-devtools-extension": "^2.13.8",
"rehype-react": "^3.1.0",
"store": "^2.0.12",
"styled-components": "^4.4.1",
"tmc-client-js": "0.0.9",
"typeface-open-sans": "0.0.54",
"typeface-open-sans-condensed": "0.0.72",
"typeface-roboto-mono": "0.0.54",
"typeface-roboto-slab": "0.0.72",
"typesafe-actions": "^4.4.2",
"typescript": "^3.8.2",
"uuid": "^3.4.0",
"visibilityjs": "^2.0.2"
},
"keywords": [
"gatsby"
],
"license": "Apache-2.0",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"format": "prettier --write 'src/**/*.js'",
"prettier-check": "prettier --list-different 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"upgrade-interactive": "npm-check --update",
"now-dev": "gatsby develop -p $PORT",
"now-build": "npm run build",
"local-quizzes-package": "./use-local-quizzes.sh"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-preset-gatsby": "^0.1.11",
"husky": "^2.3.0",
"import-all.macro": "^2.0.3",
"npm-check": "^5.9.2",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "./bin/check-code-style.sh"
}
}
}