-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·138 lines (138 loc) · 4.47 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "oos-website",
"description": "I write about modern JavaScript, web development, computer science and opinions are mine.🚀",
"version": "1.0.0",
"private": "true",
"author": "Ojo Oluwasetemi <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Oluwasetemi/Oluwasetemi.dev.git"
},
"bugs": {
"url": "https://github.com/Oluwasetemi/Oluwasetemi.dev/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
">1%",
"not dead"
],
"dependencies": {
"@mdx-js/react": "^3.0.1",
"@react-spring/web": "^9.7.4",
"@sentry/gatsby": "^8.28.0",
"@sentry/webpack-plugin": "^2.22.4",
"babel-plugin-styled-components": "^2.1.4",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"formik": "^2.2.9",
"gatsby": "^5",
"gatsby-omni-font-loader": "^2.0.2",
"gatsby-parallel-runner": "^1.3.0",
"gatsby-plugin-catch-links": "^5",
"gatsby-plugin-feed-mdx": "^1.1.0",
"gatsby-plugin-google-analytics": "^5",
"gatsby-plugin-image": "^3",
"gatsby-plugin-manifest": "^5",
"gatsby-plugin-mdx": "^5",
"gatsby-plugin-nprogress": "^5",
"gatsby-plugin-offline": "^6.13.2",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5",
"gatsby-plugin-sitemap": "^5",
"gatsby-plugin-styled-components": "^5",
"gatsby-plugin-twitter": "^5",
"gatsby-plugin-workerize-loader": "^2",
"gatsby-remark-autolink-headers": "^6",
"gatsby-remark-code-buttons": "^2.0.7",
"gatsby-remark-copy-linked-files": "^6",
"gatsby-remark-embedder": "^6",
"gatsby-remark-images": "^6",
"gatsby-remark-prismjs": "^6",
"gatsby-remark-responsive-iframe": "^6",
"gatsby-remark-smartypants": "^6",
"gatsby-source-filesystem": "^5",
"gatsby-transformer-sharp": "^5",
"nodemailer": "^6.4.14",
"normalize.css": "^8.0.1",
"ow": "^0.18.0",
"polished": "^4.3.1",
"postcss": "8",
"postcss-loader": "4",
"prismjs": "^1.15.0",
"prompts": "^2.4.2",
"react": "^18",
"react-dom": "^18",
"react-helmet": "^6.1.0",
"react-tooltip": "^5",
"react-use-gesture": "^9.1.3",
"react-utterances": "^0.6.4",
"reading-time": "^1.5.0",
"styled-components": "^6",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7",
"babel-preset-gatsby": "^3",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-kentcdodds": "^16.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^2.1.2",
"jest": "^26.6.1",
"jest-in-case": "^1.0.2",
"lint-staged": "^10.5.0",
"netlify-lambda": "^2.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"homepage": "https://oluwasetemi.dev/",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"engines": {
"node": ">14"
},
"scripts": {
"dev": "gatsby develop",
"lint:css": "stylelint './src/**/*.(ts|tsx|js|jsx)'",
"lint:css:fix": "stylelint './src/**/*.(ts|tsx|js|jsx)' --fix",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"build": "gatsby build",
"serve": "gatsby serve",
"develop": "gatsby develop",
"start": "gatsby serve --port 8080",
"clean": "gatsby clean",
"netlify": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby-parallel-runner",
"validate": "npm run build",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|graphql|md|mdx)\"",
"cy": "is-ci \"test:e2e\" \"cy:open\"",
"cy:open": "cypress open",
"cy:run": "CYPRESS_BASE_URL=http://localhost:8080 cypress run",
"test:e2e": "start-server-and-test start http://localhost:8080 cy:run",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch"
}
}