-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
92 lines (92 loc) · 2.48 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "umami.is",
"version": "1.0.0",
"description": "umami.is website",
"author": "Mike Cao <[email protected]>",
"license": "MIT",
"homepage": "https://umami.is",
"repository": {
"type": "git",
"url": "https://github.com/umami-software/website.git"
},
"scripts": {
"dev": "next dev -p 5001",
"build": "next build",
"start": "next start",
"lint": "next lint --quiet",
"stylelint": "stylelint --fix"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"**/*.css": [
"stylelint --fix",
"prettier --write"
]
},
"dependencies": {
"@fontsource/inter": "^4.5.15",
"@fontsource/jetbrains-mono": "^4.5.12",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^14.0.4",
"@sendgrid/mail": "^8.1.3",
"@types/mdx": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@umami/react-zen": "^0.41.0",
"classnames": "^2.2.6",
"date-fns": "^4.1.0",
"fast-glob": "^3.3.2",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"next": "^14.1.1",
"next-axiom": "^1.1.1",
"next-mdx-remote": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scroll-parallax": "^3.2.0",
"react-spring": "^8.0.27",
"recursive-readdir": "^2.2.3",
"rehype-highlight": "^7.0.0",
"rehype-pretty-code": "^0.10.0",
"remark": "^12.0.1",
"remark-gfm": "^3.0.1",
"remark-html": "^16.0.1",
"shiki": "^0.14.4",
"thenby": "^1.3.4",
"typescript": "^4.8.4"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^18.8.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"cross-env": "^7.0.2",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^6.11.0",
"eslint-mdx": "^2.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.4.1",
"prettier": "^3.0.3",
"prettier-eslint": "^13.0.0",
"stylelint": "^15.10.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
}
}