-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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
{
"name": "www.kepinski.ch",
"version": "1.0.0",
"description": "Personal site",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"export": "next export",
"test": "xo"
},
"xo": {
"rules": {
"import/no-unassigned-import": "off",
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/no-unsafe-assignment": "off"
}
},
"dependencies": {
"@mdx-js/react": "^2.1.5",
"@n8tb1t/use-scroll-position": "^2.0.3",
"framer-motion": "^7.6.6",
"next": "^13.0.3",
"prism-theme-one-light-dark": "^1.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.6.0"
},
"devDependencies": {
"@babel/runtime": "^7.20.1",
"@mdx-js/loader": "^2.1.5",
"@next/mdx": "^13.0.3",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"autoprefixer": "^10.4.13",
"critters": "0.0.16",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.54.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.19",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-prism": "^1.3.6",
"remark-smartypants": "^2.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.4",
"xo": "^0.52.4"
}
}