-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
{
"name": "portfolio",
"author": "Florian Trayon (https://github.com/FlorianLeChat)",
"license": "MIT",
"private": true,
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/FlorianLeChat/Portfolio.git"
},
"bugs": {
"url": "https://github.com/FlorianLeChat/Portfolio/issues"
},
"dependencies": {
"pino": "~9.6",
"next": "~15.2",
"sharp": "~0.33",
"lodash": "~4.17",
"next-intl": "~3.26",
"pino-pretty": "~13.0"
},
"devDependencies": {
"@types/node": "~22.13",
"@types/react": "~19.0",
"@types/lodash": "~4.17",
"@types/grecaptcha": "~3.0",
"@types/canvas-confetti": "~1.9",
"@types/dom-speech-recognition": "~0.0",
"@types/eslint-plugin-jsx-a11y": "~6.10",
"husky": "~9.1",
"eslint": "~9.21",
"cspell": "~8.17",
"devicon": "~2.16",
"valibot": "~0.42",
"globals": "~16.0",
"prettier": "~3.5",
"deepmerge": "~4.3",
"photoswipe": "~5.4",
"typescript": "~5.8",
"sweetalert2": "~11.14",
"lint-staged": "~15.4",
"sanitize.css": "~13.0",
"sass-embedded": "~1.85",
"canvas-confetti": "~1.9",
"@playwright/test": "~1.50",
"typescript-eslint": "~8.26",
"@cspell/dict-fr-fr": "~2.2",
"@next/third-parties": "~15.2",
"vanilla-cookieconsent": "~3.1",
"eslint-plugin-jsx-a11y": "~6.10",
"@stylistic/eslint-plugin": "~4.2",
"@total-typescript/ts-reset": "~0.6",
"@fortawesome/react-fontawesome": "~0.2",
"@fortawesome/fontawesome-svg-core": "~6.7",
"@fortawesome/free-solid-svg-icons": "~6.7",
"@fortawesome/free-brands-svg-icons": "~6.7"
},
"engines": {
"node": ">=18.0",
"npm": ">=8.6"
},
"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",
"lint-staged": "lint-staged",
"check-spell": "cspell locales/** --show-context --show-suggestions"
},
"browserslist": [
"defaults"
]
}