-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
{
"name": "alestrunda",
"private": true,
"description": "My personal web sites",
"version": "0.1.0",
"author": "Aleš Trunda <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"classnames": "^2.5.1",
"gatsby": "^5.13.7",
"gatsby-image": "^3.11.0",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-offline": "^6.13.3",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sass": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-remark-images": "^7.13.2",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^9.13.0",
"react-scroll": "^1.9.0",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1",
"yet-another-react-lightbox": "^3.21.4"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"sass-loader": "^16.0.1"
},
"keywords": [
"gatsby"
],
"scripts": {
"clean": "gatsby clean",
"build": "gatsby build --prefix-paths",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b master",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.{js,jsx,ts,tsx}"
},
"repository": {
"type": "git",
"url": "https://github.com/alestrunda/alestrunda-gatsby"
}
}