-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 4.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "mfaouzi.com",
"author": {
"name": "Faouzi Mohamed",
"email": "[email protected]",
"url": "https://mfaouzi.com"
},
"bugs": {
"url": "https://github.com/faouziMohamed/mfaouzi.com/issues"
},
"homepage": "https://github.com/faouziMohamed/mfaouzi.com#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/faouziMohamed/mfaouzi.com.git"
},
"keywords": [
"portfolio",
"faouziMohamed",
"personal"
],
"version": "1.2.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"prod": "yarn build && next start",
"up": "yarn upgrade --latest",
"build": "yarn prisma generate && next build",
"start": "next start",
"format:fix": "prettier -w ./**/*.{js,mjs,ts,tsx,json,scss,md,y*ml}",
"format:check": "prettier -c .",
"lint": "next lint",
"lint:fix": "eslint --max-warnings=0 ./src/**/*.{ts,tsx} --fix && yarn format:fix",
"lint:strict": "eslint --max-warnings=0 ./src/**/*.{ts,tsx}",
"type-check": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap",
"prepare": "husky",
"container:run": "docker compose -f docker-compose.yml up",
"container:build": "docker build -t mfaouzi.com ."
},
"dependencies": {
"@emotion/cache": "11.13.1",
"@emotion/react": "11.13.3",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.13.0",
"@fontsource/roboto": "^5.0.14",
"@fontsource/ubuntu": "^5.0.14",
"@mui/base": "^5.0.0-beta.40",
"@mui/material": "^6.0.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.19.1",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"framer-motion": "^11.5.4",
"next": "14.2.8",
"next-auth": "4.24.7",
"next-connect": "^0.13.0",
"next-secure-headers": "^2.2.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.15",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-transition-group": "^4.4.5",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@next/env": "14.2.8",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.9",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/cors": "^2.8.17",
"@types/node": "^22.5.4",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18.3.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"autoprefixer": "^10.4.20",
"eslint": "~8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.19.1",
"sass": "^1.78.0",
"standard-version": "^9.5.0",
"tailwindcss": "3.4.10",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "~5.3.3"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"eslint --max-warnings=0 --fix"
],
"./src/**/*.{ts,tsx,json,scss,md,y*ml}": [
"prettier --write"
]
}
}