forked from oedotme/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "website",
"version": "1.0.0",
"description": "Personal website and blog",
"author": "Omar Elhawary <oedotme@gmail.com> (https://omarelhawary.me)",
"license": "MIT",
"repository": {
"url": "https://github.com/oedotme/website"
},
"scripts": {
"dev": "next dev",
"build": "next build && NODE_ENV=production node -r esbuild-register sitemap.ts",
"export": "npm run build && next export -o build",
"start": "next start",
"serve": "serve build -p 5000",
"typecheck": "tsc",
"format": "prettier -w 'src/**/*.{css,html,json,md,mdx,js,jsx,ts,tsx}'",
"lint": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install"
},
"dependencies": {
"next": "^12.2.0",
"preact": "^10.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^18.0.0",
"@types/prettier": "^2.6.3",
"@types/react": "^18.0.14",
"autoprefixer": "^10.4.7",
"esbuild": "^0.14.47",
"esbuild-register": "^3.3.3",
"eslint": "^8.18.0",
"eslint-config-next": "^12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mdx-bundler": "^9.0.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"rehype-prism-plus": "^1.4.1",
"serve": "^13.0.2",
"tailwindcss": "^3.1.4",
"typescript": "^4.7.4"
}
}