-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.29 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
{
"name": "simple-file-storage",
"author": "Florian Trayon (https://github.com/FlorianLeChat)",
"license": "MIT",
"private": true,
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/FlorianLeChat/Simple-File-Storage.git"
},
"bugs": {
"url": "https://github.com/FlorianLeChat/Simple-File-Storage/issues"
},
"scripts": {
"dev": "next dev --turbo",
"test": "playwright test",
"lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"build": "next build",
"start": "next start",
"pretty": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky",
"migrate": "dotenv -e .env.local -e .env prisma db push",
"lint-staged": "lint-staged",
"check-spell": "cspell locales/** --show-context --show-suggestions"
},
"dependencies": {
"swr": "~2.3",
"pino": "~9.6",
"mime": "~4.0",
"next": "~15.1",
"sharp": "~0.33",
"bcrypt": "~5.1",
"lodash": "~4.17",
"valibot": "~0.42",
"next-intl": "~3.26",
"file-type": "~19.6",
"next-auth": "5.0.0-beta.25",
"nodemailer": "~6.9",
"dotenv-cli": "~8.0",
"pino-pretty": "~13.0",
"@prisma/client": "~6.1",
"@sentry/nextjs": "~8.47",
"@auth/prisma-adapter": "~2.7"
},
"devDependencies": {
"@types/node": "~22.10",
"@types/react": "~19.0",
"@types/lodash": "~4.17",
"@types/bcrypt": "~5.0",
"@types/react-dom": "~19.0",
"@types/nodemailer": "~6.4",
"@types/canvas-confetti": "~1.9",
"clsx": "~2.1",
"husky": "~9.1",
"prisma": "~6.1",
"sonner": "~1.7",
"cspell": "~8.17",
"postcss": "~8.4",
"prettier": "~3.4",
"deepmerge": "~4.3",
"typescript": "~5.7",
"tailwindcss": "~3.4",
"lint-staged": "~15.3",
"autoprefixer": "~10.4",
"lucide-react": "~0.469",
"framer-motion": "~11.15",
"@valibot/i18n": "~0.17",
"tailwind-merge": "~2.6",
"react-hook-form": "~7.54",
"@faker-js/faker": "~9.3",
"canvas-confetti": "~1.9",
"@playwright/test": "~1.49",
"react-day-picker": "~8.10",
"@cspell/dict-fr-fr": "~2.2",
"eslint-config-next": "~15.1",
"tailwindcss-animate": "~1.0",
"@hookform/resolvers": "~3.9",
"@next/third-parties": "~15.1",
"eslint-config-airbnb": "~19.0",
"@radix-ui/react-slot": "~1.1",
"@radix-ui/react-tabs": "~1.1",
"vanilla-cookieconsent": "~3.0",
"@tanstack/react-table": "~8.20",
"@radix-ui/react-label": "~2.1",
"@radix-ui/react-avatar": "~1.1",
"@radix-ui/react-switch": "~1.1",
"@radix-ui/react-select": "~2.1",
"@radix-ui/react-dialog": "~1.1",
"@radix-ui/react-popover": "~1.1",
"@radix-ui/react-tooltip": "~1.1",
"@radix-ui/react-checkbox": "~1.1",
"@radix-ui/react-progress": "~1.1",
"class-variance-authority": "~0.7.1",
"eslint-plugin-tailwindcss": "~3.17",
"@radix-ui/react-separator": "~1.1",
"@radix-ui/react-hover-card": "~1.1",
"@total-typescript/ts-reset": "~0.6",
"@radix-ui/react-radio-group": "~1.2",
"prettier-plugin-tailwindcss": "~0.6",
"@radix-ui/react-alert-dialog": "~1.1",
"@radix-ui/react-dropdown-menu": "~2.1",
"@radix-ui/react-navigation-menu": "~1.2",
"@typescript-eslint/eslint-plugin": "~8.19"
},
"engines": {
"node": ">=20.0",
"npm": ">=9.6"
},
"browserslist": [
"defaults"
]
}