-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"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.1",
"sharp": "~0.33",
"lodash": "~4.17",
"next-intl": "~3.26",
"pino-pretty": "~13.0"
},
"devDependencies": {
"@types/node": "~22.10",
"@types/react": "~19.0",
"@types/lodash": "~4.17",
"@types/grecaptcha": "~3.0",
"@types/canvas-confetti": "~1.9",
"@types/dom-speech-recognition": "~0.0",
"husky": "~9.1",
"cspell": "~8.17",
"devicon": "~2.16",
"valibot": "~0.42",
"prettier": "~3.4",
"deepmerge": "~4.3",
"typescript": "~5.7",
"sweetalert2": "~11.14",
"lint-staged": "~15.3",
"sanitize.css": "~13.0",
"sass-embedded": "~1.83",
"canvas-confetti": "~1.9",
"@playwright/test": "~1.49",
"@cspell/dict-fr-fr": "~2.2",
"eslint-config-next": "~15.1",
"@next/third-parties": "~15.1",
"eslint-config-airbnb": "~19.0",
"vanilla-cookieconsent": "~3.0",
"@total-typescript/ts-reset": "~0.6",
"@fortawesome/react-fontawesome": "~0.2",
"@typescript-eslint/eslint-plugin": "~8.19",
"@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"
]
}