-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.26 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
{
"name": "alanmorel",
"version": "1.0.0",
"author": "Alan Morel",
"license": "MIT",
"type": "module",
"private": true,
"description": "AlanMorel.com",
"repository": {
"type": "git",
"url": "https://github.com/AlanMorel/alanmorel.com.git"
},
"scripts": {
"dev": "next dev -p 8080",
"turbo": "next dev -p 8080 --turbo",
"build": "next build",
"start": "next start -p 8080",
"lint": "next lint && eslint . --ext .ts,tsx --fix",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"jotai": "^2.10.0",
"lucide-react": "^0.447.0",
"mime-types": "^2.1.35",
"next": "^14.2.14",
"next-themes": "^0.3.0",
"nextjs-google-analytics": "^2.3.7",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"rotating-file-stream": "^3.2.5",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13",
"tw-colors": "^3.3.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@next/eslint-plugin-next": "^14.2.14",
"@stylistic/eslint-plugin": "^2.9.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"globals": "^15.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8"
}
}