-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "portfolio-site",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build && next-sitemap --config next-sitemap.config.js",
"dev": "next dev",
"format": "pretty-quick --pattern \"**/*.{ts,tsx,js,jsx,json,yml,md,html}\"",
"lint": "next lint",
"lint-staged": "lint-staged",
"lintcss": "stylelint 'src/**/*.scss'",
"lintcss:fix": "stylelint --fix 'src/**/*.scss'",
"lintjs": "run-s lintjs:eslint \"lintjs:prettier --check\"",
"lintjs:eslint": "eslint --ext js,jsx,ts,tsx --ignore-path .gitignore --ignore-path .eslintignore .",
"lintjs:fix": "run-s \"lintjs:eslint --fix\" \"lintjs:prettier --write\"",
"lintjs:prettier": "prettier --ignore-path .gitignore --ignore-path .eslintignore --loglevel warn \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install",
"start": "next start"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@gsap/react": "^2.1.0",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@studio-freight/react-lenis": "^0.0.45",
"@vercel/analytics": "^1.1.1",
"classnames": "^2.3.2",
"feed": "^4.2.2",
"framer-motion": "^10.16.16",
"gray-matter": "^4.0.3",
"gsap": "^3.12.5",
"highlight.js": "^11.9.0",
"i18next": "^23.7.3",
"next": "^14.1.0",
"next-i18next": "^15.0.0",
"next-mdx-remote": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.4.0",
"react-twitter-widgets": "^1.11.0",
"react-typed": "^2.0.8",
"rehype-attr": "^3.0.3",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"rehype-toc": "^3.0.2",
"remark": "^15.0.1",
"remark-gfm": "^3.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"sanitize-html": "^2.11.0",
"schema-dts": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@svgr/webpack": "^8.0.1",
"@tsconfig/next": "^2.0.1",
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@types/sanitize-html": "^2.9.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^14.0.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.1",
"lint-staged": "^15.1.0",
"next-sitemap": "^4.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"sass": "^1.54.6",
"stylelint": "^15.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^12.0.0",
"typescript": "5.2.2",
"unified": "^11.0.4"
},
"packageManager": "[email protected]"
}