-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) Β· 3.67 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": "michaeldemar.co",
"description": "michaeldemar.co",
"private": true,
"version": "0.1.0",
"author": "Michael DeMarco <michaelfromyeg@gmail.com>",
"bugs": {
"url": "https://github.com/michaelfromyeg/michaeldemar.co/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"homepage": ".",
"keywords": [
"gatsby",
"michael demarco"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/michaelfromyeg/michaeldemar.co"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"s": "npm start",
"start": "gatsby develop",
"dev": "echo \"Use npm start instead!\" && gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"t": "npm test",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 0",
"build": "gatsby build",
"format": "prettier --write \"**/*.{js,jsx,json,yaml,yml,css,scss}\"",
"lint": "eslint . --fix --ext js,jsx,ts,tsx",
"deploy": "gatsby build && echo michaeldemar.co > public/CNAME && gh-pages -d public",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@notionhq/client": "^2.2.15",
"dotenv": "^16.0.3",
"gatsby": "^5.14.0",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-feed": "^5.7.0",
"gatsby-plugin-google-gtag": "^5.7.0",
"gatsby-plugin-image": "^3.7.0",
"gatsby-plugin-manifest": "^5.7.0",
"gatsby-plugin-offline": "^6.7.0",
"gatsby-plugin-react-helmet": "^6.7.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sass": "^6.7.0",
"gatsby-plugin-sharp": "^5.8.1",
"gatsby-plugin-typography": "^5.7.0",
"gatsby-remark-copy-linked-files": "^6.7.0",
"gatsby-remark-images": "^7.7.0",
"gatsby-remark-prismjs": "^7.7.0",
"gatsby-remark-responsive-iframe": "^6.7.0",
"gatsby-remark-smartypants": "^6.7.0",
"gatsby-source-filesystem": "^5.7.0",
"gatsby-transformer-remark": "^6.7.0",
"gatsby-transformer-sharp": "^5.7.0",
"marked": "^9.0.3",
"prismjs": "^1.27.0",
"react": "^18.0.0",
"react-collapsible": "^2.8.4",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-typist": "^2.0.5",
"react-typography": "^0.16.20",
"sass": "^1.59.3",
"typeface-merriweather": "^1.1.13",
"typeface-montserrat": "^1.1.13",
"typography": "^0.16.21",
"typography-plugin-code": "^0.16.20",
"typography-theme-grand-view": "^0.16.19",
"uifx": "^2.0.7"
},
"devDependencies": {
"@types/luxon": "^3.2.0",
"@types/react-helmet": "^6.1.2",
"@types/react-typist": "^2.0.1",
"@types/typography": "^0.16.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.27.1",
"eslint-webpack-plugin": "^4.0.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.3.0",
"luxon": "^3.3.0",
"prettier": "^2.8.4",
"typescript": "^5.0.2"
}
}