-
Notifications
You must be signed in to change notification settings - Fork 580
/
Copy pathpackage.json
109 lines (109 loc) · 3.65 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
{
"name": "website",
"private": true,
"description": "Mike North's TypeScript Course Websites",
"version": "0.0.1",
"author": "Mike North <[email protected]> (https://mike.works)",
"bugs": {
"url": "https://github.com/mike-north/typescript-courses"
},
"dependencies": {
"gatsby": "^3.15.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-feed": "^3.15.0",
"gatsby-plugin-manifest": "^3.15.0",
"gatsby-plugin-react-helmet": "^4.15.0",
"gatsby-plugin-sass": "^4.15.0",
"gatsby-plugin-sharp": "^3.15.0",
"gatsby-plugin-typography": "^3.15.0",
"gatsby-remark-autolink-headers": "^4.12.0",
"gatsby-remark-copy-linked-files": "^4.12.0",
"gatsby-remark-images": "^5.12.0",
"gatsby-remark-responsive-iframe": "^4.12.0",
"gatsby-remark-shiki-twoslash": "^3.0.38",
"gatsby-remark-smartypants": "^4.12.0",
"gatsby-source-filesystem": "^3.15.0",
"gatsby-transformer-remark": "^3.2.0",
"gatsby-transformer-sharp": "^3.15.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-typography": "^0.16.23",
"replace-in-file": "^7.0.1",
"sass": "^1.69.3",
"typeface-merriweather": "1.1.13",
"typeface-montserrat": "1.1.13",
"typography": "^0.16.24",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@testing-library/cypress": "^10.0.1",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.199",
"@types/node": "^20.8.7",
"@types/pkg-up": "^3.1.0",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.14",
"@types/react-helmet": "^6.1.7",
"@types/react-test-renderer": "^18.0.3",
"@types/sharp": "^0.30.5",
"@types/typography": "^0.16.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^3.12.0",
"core-js": "^3.33.0",
"cypress": "^13.3.1",
"eslint": "^7.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-react": "^7.33.2",
"gatsby-cypress": "^3.12.0",
"gatsby-plugin-google-gtag": "^3.15.0",
"gatsby-plugin-google-tagmanager": "^3.15.0",
"gatsby-remark-custom-blocks": "^3.15.0",
"gatsby-remark-emojis": "^0.4.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"markdownlint": "^0.31.1",
"markdownlint-cli": "^0.37.0",
"pkg-up": "^3.1.0",
"prettier": "^3.0.3",
"react-test-renderer": "^18.2.0",
"start-server-and-test": "^2.0.1",
"typescript": "5.3.0-beta"
},
"homepage": "https://github.com/mike-north/typescript-courses#readme",
"keywords": [
"gatsby"
],
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/mike-north/typescript-courses.git"
},
"scripts": {
"build": "yarn gatsby build",
"build-prod": "yarn build --prefix-paths",
"dev": "yarn gatsby develop --verbose",
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,md}\"",
"serve": "yarn gatsby serve",
"clean": "yarn gatsby clean",
"cy:open": "yarn cypress open --browser chrome --e2e",
"lint": "yarn lint:ts && yarn lint:md",
"lint:md": "yarn markdownlint -c ../../.markdownlint.jsonc content",
"lint:ts": "yarn eslint . --ext ts,js,tsx,jsx",
"test": "yarn test-jest && yarn test-cypress",
"test-jest": "yarn jest",
"test-cypress": "CYPRESS_SUPPORT=y yarn start-server-and-test dev http://localhost:8000 cy:open",
"typecheck": "yarn tsc -P . --noEmit"
},
"volta": {
"node": "18.18.2",
"yarn": "3.6.4"
}
}