forked from CodingTrain/thecodingtrain.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "the-coding-train",
"version": "1.0.0",
"private": true,
"description": "The Coding Train",
"author": "The Coding Train",
"license": "MIT",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "gatsby develop -H 0.0.0.0",
"build": "gatsby build --verbose",
"build-ci": "npm run tags-transforms && npm run build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"testv": "jest --verbose",
"yt-desc": "node node-scripts/yt-description.mjs",
"tags-transforms": "node node-scripts/tags-transforms",
"formatc": "prettier \"content/**/*.json\" --write"
},
"dependencies": {
"@csstools/postcss-global-data": "^1.0.3",
"@mdx-js/react": "^2.3.0",
"@octokit/core": "^4.2.0",
"classnames": "^2.3.2",
"clipboardy": "^3.0.0",
"gatsby": "^5.7.0",
"gatsby-core-utils": "^4.7.0",
"gatsby-plugin-image": "^3.7.0",
"gatsby-plugin-mdx": "^5.7.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-postcss": "^6.7.0",
"gatsby-plugin-react-helmet": "^6.7.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.7.0",
"gatsby-source-filesystem": "^5.7.0",
"gatsby-transformer-json": "^5.7.0",
"gatsby-transformer-sharp": "^5.7.0",
"postcss": "^8.4.21",
"postcss-calc": "^8.2.4",
"postcss-custom-media": "^9.1.2",
"postcss-custom-properties": "^13.1.4",
"postcss-import": "^15.1.0",
"postcss-nesting": "^11.2.1",
"postcss-normalize": "^10.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.7.1",
"react-select": "^5.7.0",
"react-youtube": "^10.1.0",
"remark-gfm": "^3.0.1",
"yup": "^1.0.2"
},
"devDependencies": {
"glob": "^9.1.2",
"jest": "^29.4.3",
"lodash": "^4.17.21",
"prettier": "^2.8.4",
"sharp": "^0.31.3",
"slugify": "^1.6.5",
"svgo": "^3.0.2"
}
}