-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "portfolio",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-format": "prettier --check .",
"check-lint": "eslint .",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@splidejs/react-splide": "^0.7.12",
"@vercel/analytics": "^1.3.1",
"date-fns": "^2.30.0",
"next": "^14.2.15",
"next-themes": "^0.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.79.0",
"tailwindcss-children": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"postcss": "^8.4.31",
"prettier": "3.1.0",
"tailwindcss": "^3.3.5"
}
}