-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"name": "portfolio",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit --incremental",
"test": "jest",
"post": "node ./scripts/content.mjs blog",
"project": "node ./scripts/content.mjs projects"
},
"dependencies": {
"@mdx-js/react": "^2.1.1",
"@notionhq/client": "^2.2.3",
"@radix-ui/react-accordion": "^0.1.6",
"@radix-ui/react-toggle-group": "^0.1.5",
"@vercel/analytics": "^0.1.6",
"feed": "^4.2.2",
"formik": "^2.2.9",
"gray-matter": "^4.0.3",
"image-size": "^1.0.1",
"marked": "^4.0.16",
"next": "^12.1.6",
"next-mdx-remote": "^4.0.3",
"ow": "^0.28.1",
"puppeteer": "^14.3.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-responsive-embed": "^2.1.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"rss-parser": "^3.12.0",
"sass": "^1.51.0",
"slugify": "^1.6.5",
"swr": "^1.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/marked": "^4.0.3",
"@types/node": "17.0.31",
"@types/react": "18.0.9",
"@types/react-responsive-embed": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"autoprefixer": "^10.4.7",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"react-test-renderer": "^18.1.0",
"rehype-toc": "^3.0.2",
"simple-git": "^3.16.0",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"webpack": "5.72.0"
}
}