-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.5 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": "jameshush-dot-com",
"private": true,
"description": "James Hush's website",
"version": "0.1.0",
"author": "James Hush <[email protected]> (https://www.jameshush.com)",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"bugs": {
"url": "https://github.com/jamsea/blog-jameshush-com/issues"
},
"dependencies": {
"@daily-co/daily-js": "^0.28.0",
"@daily-co/daily-react-hooks": "^0.2.3",
"@graphql-codegen/cli": "^2.7.0",
"@graphql-codegen/typescript": "^2.6.0",
"@graphql-codegen/typescript-operations": "^2.4.3",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.3",
"autoprefixer": "^10.4.7",
"exenv": "^1.2.2",
"gatsby": "^4.18.0",
"gatsby-plugin-feed": "^4.18.0",
"gatsby-plugin-gatsby-cloud": "^4.18.0",
"gatsby-plugin-google-gtag": "^4.18.0",
"gatsby-plugin-image": "^2.18.0",
"gatsby-plugin-manifest": "^4.18.0",
"gatsby-plugin-offline": "^5.18.0",
"gatsby-plugin-postcss": "^5.18.0",
"gatsby-plugin-react-helmet": "^5.18.0",
"gatsby-plugin-sharp": "^4.18.0",
"gatsby-plugin-sitemap": "^5.15.0",
"gatsby-remark-copy-linked-files": "^5.15.0",
"gatsby-remark-embed-youtube": "^0.0.7",
"gatsby-remark-github": "^2.0.0",
"gatsby-remark-images": "^6.15.0",
"gatsby-remark-prismjs": "^6.15.0",
"gatsby-remark-responsive-iframe": "^5.15.0",
"gatsby-remark-smartypants": "^5.15.0",
"gatsby-source-filesystem": "^4.18.0",
"gatsby-transformer-remark": "^5.15.0",
"gatsby-transformer-sharp": "^4.18.0",
"graphql": "^15.8.0",
"prismjs": "^1.28.0",
"react": "18.x",
"react-dom": "18.x",
"react-helmet": "^6.1.0",
"recoil": "^0.7.2",
"remark-github-plugin": "^1.4.0",
"tailwindcss": "^3.1.5"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.10.4",
"@testing-library/react": "^13.3.0",
"@types/exenv": "^1.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-jest": "^28.1.0",
"babel-preset-gatsby": "^2.15.0",
"cors": "^2.8.5",
"eslint": "^7.32.0",
"express": "^4.18.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"prettier": "2.7.1",
"react-test-renderer": "^18.1.0",
"stylelint": "^14.8.5",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"typescript": "^4.7.4"
},
"overrides": {
"react": "18.x"
},
"homepage": "https://github.com/jamsea/blog-jameshush-com#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jamsea/blog-jameshush-com.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test:unit": "jest",
"test": "tsc && npm run stylelint-check && npm run lint && jest",
"stylelint-check": "stylelint-config-prettier-check",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"lint": "npm run lint:js && npm run lint:css",
"build:graphql": "graphql-codegen"
}
}