-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.75 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.75 KB
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
{
"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",
"test": "playwright test",
"lint": "eslint . --format gitlab --ext .js,.jsx,.ts,.tsx",
"build": "next build",
"start": "next start",
"pretty": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky",
"commitlint": "commitlint --edit",
"db:migrate": "prisma db push --skip-generate",
"db:generate": "prisma generate",
"lint-staged": "lint-staged",
"check-spell": "cspell locales/** --show-context --show-suggestions"
},
"dependencies": {
"swr": "~2.3",
"pino": "~10.1",
"mime": "~4.1",
"next": "~16.1",
"sharp": "~0.34",
"bcrypt": "~6.0",
"lodash": "~4.17",
"valibot": "~1.2",
"next-intl": "~4.6",
"file-type": "~21.3",
"next-auth": "5.0.0-beta.30",
"nodemailer": "~7.0",
"altcha-lib": "~1.4",
"dotenv-cli": "~11.0",
"pino-pretty": "~13.1",
"@prisma/client": "~6.19",
"@auth/prisma-adapter": "~2.11"
},
"devDependencies": {
"@types/node": "~25.0",
"@types/react": "~19.2",
"@types/lodash": "~4.17",
"@types/bcrypt": "~6.0",
"@types/react-dom": "~19.2",
"@types/nodemailer": "~7.0",
"@types/eslint-plugin-jsx-a11y": "~6.10",
"@types/eslint-plugin-tailwindcss": "~3.17",
"clsx": "~2.1",
"husky": "~9.1",
"eslint": "~9.39",
"prisma": "~6.19",
"sonner": "~2.0",
"cspell": "~9.4",
"postcss": "~8.5",
"globals": "~16.5",
"prettier": "~3.7",
"radix-ui": "~1.4",
"deepmerge": "~4.3",
"typescript": "~5.9",
"@eslint/js": "~9.39",
"tailwindcss": "~3.4",
"lint-staged": "~16.2",
"autoprefixer": "~10.4",
"lucide-react": "~0.562",
"framer-motion": "~12.23",
"@valibot/i18n": "~1.0",
"tailwind-merge": "~3.4",
"@commitlint/cli": "~20.4",
"react-hook-form": "~7.69",
"@faker-js/faker": "~10.1",
"@playwright/test": "~1.57",
"react-day-picker": "~9.13",
"typescript-eslint": "~8.51",
"@cspell/dict-fr-fr": "~2.3",
"tailwindcss-animate": "~1.0",
"@hookform/resolvers": "~5.2",
"vanilla-cookieconsent": "~3.1",
"@tanstack/react-table": "~8.21",
"eslint-plugin-jsx-a11y": "~6.10",
"eslint-formatter-gitlab": "~7.0",
"class-variance-authority": "~0.7.1",
"@stylistic/eslint-plugin": "~5.6",
"eslint-plugin-tailwindcss": "~3.18",
"@total-typescript/ts-reset": "~0.6",
"prettier-plugin-tailwindcss": "~0.7",
"@commitlint/config-conventional": "~20.4"
},
"overrides": {
"nodemailer": "~7.0"
},
"engines": {
"node": ">=20.0",
"npm": ">=9.6"
},
"browserslist": [
"defaults"
]
}