-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.94 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.94 KB
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
{
"name": "zanechua-dot-com",
"version": "5.0.0",
"description": "Website for zanechua.com",
"repository": {
"type": "git",
"url": "https://github.com/zanechua/website"
},
"scripts": {
"analyze:lint": "eslint --ext .jsx --ext .js .",
"analyze:prettier": "prettier --list-different \"**/*.{css,js,jsx,json,md}\"",
"analyze": "pnpm run analyze:lint && pnpm run analyze:prettier",
"lint": "eslint . --ext .jsx --ext .js",
"format": "prettier --ignore-path .gitignore \"./**/*.+(ts|js|tsx|jsx|css|json|md)\" --write",
"fix": "pnpm run lint --fix && pnpm run format",
"build": "gatsby build",
"dev": "gatsby develop -H 0.0.0.0",
"start": "pnpm run dev",
"release": "standard-version -a",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build && gh-pages -d public",
"commit": "cz",
"prepare": "[ -d '.husky' ] && husky || true"
},
"lint-staged": {
"./**/*.{ts,js,tsx,jsx}": [
"pnpm lint --fix"
],
"./**/*.{ts,js,tsx,jsx,css,json,md}": [
"pnpm format"
]
},
"keywords": [
"zanechua"
],
"author": "Zane J. Chua <hi@zanechua.com>",
"license": "UNLICENSED",
"dependencies": {
"@headlessui/react": "^2.2.4",
"@react-hook/window-size": "^3.1.1",
"@sindresorhus/fnv1a": "^3.1.0",
"date-fns": "^4.1.0",
"gatsby": "5.14.5",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-tagmanager": "^5.14.0",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-nprogress": "^5.14.0",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-pnpm": "^1.2.10",
"gatsby-plugin-postcss": "^6.14.0",
"gatsby-plugin-purgecss": "^6.2.1",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-remark-autolink-headers": "^6.14.0",
"gatsby-remark-code-buttons": "^2.0.7",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"gatsby-transformer-yaml": "^5.14.0",
"gh-pages": "^6.3.0",
"lodash": "^4.17.21",
"postcss": "^8.5.6",
"prismjs": "^1.30.0",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"sharp": "^0.34.2",
"zustand": "^5.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/compat": "^1.3.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.0",
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/postcss": "^4.1.11",
"autoprefixer": "10.4.21",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-gatsby": "^3.14.0",
"cssnano": "^7.0.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-webpack-plugin": "^5.0.2",
"gatsby-plugin-eslint": "^4.0.4",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.0",
"standard-version": "^9.5.0",
"tailwindcss": "^4.1.11"
},
"bugs": {
"url": "https://github.com/zanechua/website/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@10.12.2+sha512.a32540185b964ee30bb4e979e405adc6af59226b438ee4cc19f9e8773667a66d302f5bfee60a39d3cac69e35e4b96e708a71dd002b7e9359c4112a1722ac323f"
}