-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.26 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.26 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
{
"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": {
"next": "~16.1",
"sharp": "~0.34",
"lodash": "~4.17",
"next-intl": "~4.7"
},
"devDependencies": {
"@types/node": "~25.0",
"@types/react": "~19.2",
"@types/lodash": "~4.17",
"@types/canvas-confetti": "~1.9",
"@types/dom-speech-recognition": "~0.0",
"@types/eslint-plugin-jsx-a11y": "~6.10",
"husky": "~9.1",
"eslint": "~9.39",
"cspell": "~9.4",
"devicon": "~2.17",
"globals": "~17.0",
"prettier": "~3.7",
"deepmerge": "~4.3",
"photoswipe": "~5.4",
"typescript": "~5.9",
"sweetalert2": "~11.22",
"lint-staged": "~16.2",
"sanitize.css": "~13.0",
"sass-embedded": "~1.97",
"canvas-confetti": "~1.9",
"@commitlint/cli": "~20.4",
"@playwright/test": "~1.57",
"typescript-eslint": "~8.51",
"@cspell/dict-fr-fr": "~2.3",
"eslint-plugin-jsx-a11y": "~6.10",
"eslint-formatter-gitlab": "~7.0",
"@stylistic/eslint-plugin": "~5.6",
"@fortawesome/react-fontawesome": "~3.1",
"@commitlint/config-conventional": "~20.4",
"@fortawesome/fontawesome-svg-core": "~7.1",
"@fortawesome/free-solid-svg-icons": "~7.1",
"@fortawesome/free-brands-svg-icons": "~7.1"
},
"engines": {
"node": ">=20.0",
"npm": ">=9.6"
},
"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",
"lint-staged": "lint-staged",
"check-spell": "cspell locales/** --show-context --show-suggestions"
},
"browserslist": [
"defaults"
]
}