-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
74
75
76
77
78
{
"name": "95Recipes",
"version": "1.5.0",
"homepage": "https://95recipes.ggdaltoso.dev",
"private": true,
"dependencies": {
"@react95/core": "^7.0.1",
"@react95/gatsby-theme": "^2.2.1",
"@react95/icons": "^2.0.4",
"gatsby": "^5.13.1",
"gatsby-plugin-manifest": "^5.13.0",
"gatsby-plugin-offline": "^6.13.0",
"gatsby-plugin-sitemap": "^6.13.0",
"gh-pages": "^6.1.1",
"object-path": "^0.11.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-medium-image-zoom": "^5.1.9",
"styled-components": "^5.3.3"
},
"scripts": {
"develop": "gatsby develop -o",
"start": "gatsby develop",
"prebuild": "gatsby clean",
"build": "gatsby build",
"clean": "gatsby clean",
"serve": "gatsby serve",
"deploy": "gh-pages -d public",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/release-notes-generator": "^12.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^22.0.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git",
[
"@semantic-release/exec",
{
"publishCmd": "yarn deploy"
}
]
]
}
}