-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "site",
"license": "MIT",
"author": "Timo Riski",
"scripts": {
"develop": "gatsby develop",
"serve": "gatsby serve",
"ssr": "npm run build && npm run serve",
"format": "prettier --write *.mjs **/**/*.{js,mjs}",
"lint": "eslint --ignore-pattern .gitignore src/**",
"lint:fix": "npm run lint -- --fix",
"build:dir": "mkdirp ./public/icons/",
"build:favicons": "node scripts/favicons.mjs",
"build": "npm run build:dir && npm run build:favicons && gatsby build"
},
"dependencies": {
"framer-motion": "^11.11.8",
"gatsby": "5.13.7",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-offline": "6.13.3",
"gatsby-plugin-sharp": "5.13.1",
"gatsby-plugin-sitemap": "6.13.1",
"gatsby-plugin-styled-components": "^6.13.1",
"gatsby-remark-copy-linked-files": "6.13.2",
"gatsby-remark-images": "7.13.2",
"gatsby-source-filesystem": "5.13.1",
"gatsby-transformer-json": "5.13.1",
"gatsby-transformer-remark": "6.13.1",
"gatsby-transformer-sharp": "5.13.1",
"get-scrollbar-width": "1.0.5",
"intersection-observer": "0.12.2",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.3.0",
"sharp": "^0.33.5",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@netlify/plugin-lighthouse": "^6.0.0",
"babel-preset-gatsby": "^3.13.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"favicons": "7.2.0",
"globals": "^15.11.0",
"mkdirp": "3.0.1",
"postcss": "^8.4.47",
"prettier": "3.3.3"
}
}