-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.21 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
{
"name": "louisgrasset.fr",
"version": "1.0.0",
"private": true,
"description": "louisgrasset.fr",
"author": "Louis Grasset",
"engines": {
"node": "^v18.7.0"
},
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"prebuild": "node ./src/scripts/clean-img.mjs && node ./src/scripts/resize-img.mjs && node ./src/scripts/convert-img.mjs",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint *.js src/ --fix",
"lint:stylelint": "stylelint src/**/*.scss --fix"
},
"license": "0BSD",
"dependencies": {
"@tailwindcss/forms": "^0.5.6",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-helmet": "^6.1.9",
"autoprefixer": "^10.4.16",
"gatsby": "^5.12.9",
"gatsby-image": "^3.11.0",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "^5.12.3",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-sass": "^6.12.3",
"gatsby-plugin-sharp": "^5.12.3",
"gatsby-plugin-sitemap": "^6.12.3",
"gatsby-plugin-typescript": "^5.12.1",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-transformer-sharp": "^5.12.3",
"imagemin": "^8.0.1",
"imagemin-webp": "^8.0.0",
"log-update": "^6.0.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"resize-img": "^2.0.0",
"sass": "^1.69.5",
"tailwindcss": "^3.3.5",
"tailwindcss-filters": "^3.0.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-prettier": "^4.0.2"
}
}