-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.78 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "mf-website",
"description": "Microfleet documentation website",
"license": "MIT",
"version": "1.0.1",
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"release": "yarn semantic-release",
"release:local": "yarn semantic-release --no-ci",
"semantic-release": "export $(cat .env | xargs) && semantic-release",
"deploy": "yarn deploy:$(test -n \"$CI\" && echo ci || echo gh)",
"deploy:gh": "rm -rf public .cache && gatsby build && gh-pages -d public",
"deploy:ci": "yarn deploy:gh --repo https://${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git",
"deploy:surge": "rm -rf public && gatsby build && surge ./public -d https://microfleet.surge.sh"
},
"dependencies": {
"gatsby": "^2.15.20",
"gatsby-link": "^2.2.15",
"gatsby-plugin-jss": "^2.1.7",
"gatsby-plugin-typography": "^2.3.8",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hamburger-menu": "^1.1.1",
"react-jss": "^8.6.1",
"react-responsive": "^8.0.1",
"react-typography": "^0.16.19",
"typography": "^0.16.19",
"typography-theme-grand-view": "^0.16.19"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/exec": "^3.3.6",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.3",
"@semantic-release/npm": "^5.1.15",
"babel-preset-gatsby": "^0.2.14",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"gh-pages": "^2.1.1",
"semantic-release": "^15.13.24"
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
{
"path": "@semantic-release/npm",
"npmPublish": false
},
"@semantic-release/git",
"@semantic-release/github"
],
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
},
{
"type": "minor",
"release": "minor"
},
{
"type": "patch",
"release": "patch"
},
{
"type": "major",
"release": "major"
},
{
"type": "breaking",
"release": "major"
}
]
},
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/exec",
"cmd": "yarn deploy"
},
"@semantic-release/git"
],
"publish": [
"@semantic-release/github"
]
}
}