-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
74 lines (74 loc) · 1.91 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
{
"name": "lowmess",
"version": "4.3.0",
"description": "The website and portfolio of Alec Lomas",
"scripts": {
"start": "next dev",
"prebuild": "node scripts/generate-sitemap && node scripts/generate-rss",
"build": "next build",
"serve": "next start",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowmess/lowmess.git"
},
"keywords": [
"portfolio",
"frontend",
"design"
],
"author": "Alec Lomas",
"license": "MIT",
"bugs": {
"url": "https://github.com/lowmess/lowmess/issues"
},
"homepage": "https://lowmess.com",
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^12.1.6",
"@reach/visually-hidden": "^0.17.0",
"@silvenon/remark-smartypants": "^1.0.0",
"date-fns": "^2.30.0",
"github-slugger": "^1.4.0",
"globby": "^11.1.0",
"lowmess-prism": "^2.0.2",
"mdx-embed": "^1.0.0",
"next": "^12.1.6",
"next-transpile-modules": "^9.0.0",
"nextjs-sitemap-generator": "^1.3.1",
"prism-react-renderer": "^1.3.3",
"prismjs": "^1.28.0",
"react": "^17.0.2",
"react-children-utilities": "^2.8.0",
"react-dom": "^17.0.2",
"rss": "^1.2.2",
"theme-ui": "^0.14.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.6",
"@types/node": "^20.1.4",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/webpack-env": "^1.17.0",
"eslint": "^7.32.0",
"eslint-config-lowmess": "^4.1.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-config-lowmess": "^0.3.0",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}