-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
{
"name": "compro-mathpy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json,cjs}",
"format": "prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"@giscus/react": "^2.2.8",
"@headlessui/react": "^1.7.13",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.3.0",
"@types/lodash": "^4.14.192",
"@types/node": "18.15.8",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"clsx": "^1.2.1",
"eslint-config-next": "13.2.4",
"framer-motion": "^10.11.2",
"lodash": "^4.17.21",
"next": "13.2.4",
"next-mdx-remote": "^4.4.1",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-slug": "^5.1.0",
"remark-autolink-headings": "^7.0.1",
"remark-slug": "^7.0.1",
"typescript": "5.0.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"autoprefixer": "^10.4.14",
"esbuild": "^0.13.15",
"eslint": "^8.39.0",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"lint-staged": "12.5.0",
"mdx-bundler": "^6.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"reading-time": "^1.5.0",
"tailwindcss": "^3.2.7"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{css,scss,md,html,json}": [
"prettier --write"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write",
"*.--write": "prettier --write"
}
}