-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.18 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
{
"name": "blog",
"version": "1.0.0",
"private": true,
"description": "blog",
"author": "cozyzoey",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"generate:css": "npx tailwindcss -i ./src/styles/global.css -o ./static/admin/preview.css --watch",
"proxy": "npx netlify-cms-proxy-server",
"dev": "run-p develop generate:css proxy",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"autoprefixer": "^10.4.15",
"clsx": "^2.0.0",
"dayjs": "^1.11.9",
"decap-cms-app": "^3.0.7",
"gatsby": "5.11.0",
"gatsby-omni-font-loader": "^2.0.2",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-netlify-cms": "^7.12.0",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-plugin-sitemap": "^6.12.0",
"gatsby-plugin-typescript": "^5.12.0",
"gatsby-remark-autolink-headers": "^6.12.0",
"gatsby-remark-copy-linked-files": "^6.12.0",
"gatsby-remark-images": "^7.12.0",
"gatsby-remark-prismjs": "^7.12.0",
"gatsby-remark-relative-images": "^2.0.5",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-remark": "^6.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"netlify-cms-app": "^2.15.72",
"netlify-cms-media-library-cloudinary": "^1.3.10",
"postcss": "^8.4.29",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.11.0",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"gatsby-plugin-root-import": "^2.0.9",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2"
}
}