-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.59 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
{
"name": "ericpoe.com",
"description": "Code and content for ericpoe.com",
"author": "Eric Poe <[email protected]>",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.20",
"gatsby": "^5.14.0",
"gatsby-plugin-google-analytics": "^5.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-postcss": "^6.14.0",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"postcss": "^8.4.49",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
},
"scripts": {
"css": "tailwind build -i src/styles/tailwind.css -c ./tailwind.config.js -o src/components/css/index.css",
"build": "npm run css && gatsby build",
"develop": "npm run css && gatsby develop",
"develop:debug": "node --inspect=127.0.0.1:9232 node_modules/.bin/gatsby develop",
"format": "prettier --write '**/*.{js,json,jsx,md}'",
"lint": "eslint '**/*.{js,jsx}'",
"test": "echo \"Error: no test specified\" && exit 1"
}
}