-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.53 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
{
"name": "kirian-caumes-website",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": "20.x.x"
},
"scripts": {
"build": "next build",
"cspell": "npx cspell ./ --no-progress --dot --gitignore",
"dev": "next dev",
"eslint": "eslint src --ext .tsx,.ts,.js,.jsx",
"eslint:fix": "eslint src --ext .tsx,.ts,.js,.jsx --fix",
"knip": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx knip",
"postbuild": "npx next-sitemap",
"prepare": "husky install",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"start": "next start",
"stylelint": "stylelint \"src/**/*.{css,scss,sass}\"",
"stylelint:fix": "stylelint \"src/**/*.{css,scss,sass}\" --fix;",
"typed-scss-modules": "npx typed-scss-modules src --nameFormat none --exportType default --banner \"/* eslint-disable jsdoc/require-jsdoc, @typescript-eslint/consistent-type-definitions */\" --logLevel info --exportTypeName ClassNames --exportTypeInterface Styles --ignore \"**/styles/index.scss\""
},
"dependencies": {
"classnames": "^2.5.1",
"js-cookie": "^3.0.5",
"next": "14.1.3",
"next-pwa": "^5.6.0",
"react": "18.2.0",
"react-awesome-reveal": "^4.2.8",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-use": "^17.5.0",
"sass": "^1.72.0",
"sharp": "^0.33.2",
"typescript": "5.4.2"
},
"devDependencies": {
"@cspell/dict-fr-fr": "^2.2.2",
"@next/eslint-plugin-next": "^14.1.3",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.11.30",
"@types/react": "18.2.67",
"@types/react-dom": "18.2.22",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cspell": "^8.6.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"knip": "^5.1.3",
"lint-staged": "^15.2.2",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.37",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.5",
"stylelint": "^15.11.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"typed-scss-modules": "^8.0.0"
}
}