-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 KB
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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8090",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export ": "next export",
"deploy": "next build && next export && touch out/.nojekyll",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@mdx-js/loader": "^2.1.3",
"@mdx-js/react": "^2.1.3",
"@next/mdx": "^12.3.1",
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/react-query": "^4.3.4",
"@types/autosize": "^4.0.1",
"@types/marked": "^4.0.7",
"autoprefixer": "^10.4.24",
"autosize": "^5.0.1",
"axios": "^0.27.2",
"babel-plugin-module-resolver": "^4.1.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.5",
"gray-matter": "^4.0.3",
"marked": "^4.1.0",
"mixpanel-browser": "^2.55.0",
"next": "12.3.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.13.0",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.4.0",
"react-transition-group": "^4.4.5",
"swiper": "^11.1.9",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@types/mixpanel-browser": "^2.49.1",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-transition-group": "^4.4.11",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.3",
"prettier": "^3.3.3",
"typescript": "5.3.3"
}
}