This repository has been archived by the owner on Apr 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
209 lines (209 loc) · 6.19 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"name": "kcnt-info-website",
"version": "2.1.0",
"description": "My Portfolio website",
"repository": "https://github.com/kcnt-info/website.git",
"author": "Kamontat Chantrachirathumrong <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf .nuxt dist static/sw.js cypress/videos cypress/reports cypress/html-report *.log .scannerwork .caches",
"clean:all": "yarn clean yarn.lock node_modules",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate && cp _redirects dist/_redirects",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:report": "eslint --ext .js,.vue --ignore-path .gitignore --output-file .caches/report.json --format json .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"start-server": "yarn build && yarn start",
"start-test": "cypress run --reporter mocha-multi-reporters --reporter-options configFile=cypress/config/mocha.json",
"start-test:ci": "cypress run --reporter mocha-multi-reporters --reporter-options configFile=cypress/config/mocha.json --record --key $CYPRESS_KEY",
"cypress:ui": "cypress open",
"test": "start-server-and-test start-server http://localhost:3000 start-test",
"test:ci": "start-server-and-test start-server http://localhost:3000 start-test:ci",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file --release-count 0 --output-unreleased",
"release": "semantic-release --debug",
"analytic:server": "./scripts/sh/analytic-server console",
"analytic:local": "sonar-scanner -Dsonar.host.url=http://localhost:9000 -Dsonar.login=$SONAR_LOCAL_KEY -Dsonar.projectKey=$SONAR_LOCAL_KEY -X",
"analytic:deploy": "sonar-scanner -Dsonar.organization=kamontat-github -Dsonar.login=$SONAR_KEY -X"
},
"dependencies": {
"@nuxtjs/axios": "5.3.6",
"@nuxtjs/onesignal": "2.6.0",
"@nuxtjs/proxy": "1.3.1",
"@nuxtjs/pwa": "2.6.0",
"@nuxtjs/redirect-module": "0.2.0",
"@nuxtjs/sentry": "2.1.0",
"@nuxtjs/vuetify": "0.5.1",
"compromise": "11.13.0",
"cookie-universal-nuxt": "2.0.14",
"firebase": "5.8.0",
"flag-icon-css": "3.2.1",
"lru-cache": "5.1.1",
"moment": "2.23.0",
"nuxt": "2.3.4",
"nuxt-i18n": "5.7.0",
"nuxt-purgecss": "0.2.1",
"vue-check-view": "0.2.3",
"vuetify": "1.4.1"
},
"devDependencies": {
"@commitlint/cli": "7.3.1",
"@commitlint/config-conventional": "7.3.1",
"@fortawesome/fontawesome-free": "5.6.3",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/commit-analyzer": "6.1.0",
"@semantic-release/git": "7.0.7",
"@semantic-release/github": "5.2.9",
"@semantic-release/release-notes-generator": "7.1.4",
"babel-eslint": "8.2.6",
"babel-polyfill": "6.26.0",
"conventional-changelog-cli": "2.0.11",
"cypress": "3.1.4",
"eslint": "5.10.0",
"eslint-config-prettier": "3.3.0",
"eslint-loader": "2.1.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-vue": "4.7.1",
"husky": "1.3.1",
"jsdom": "13.1.0",
"mocha": "5.2.0",
"mocha-junit-reporter": "1.18.0",
"mocha-multi-reporters": "1.1.7",
"mochawesome": "3.1.1",
"node-sass": "4.11.0",
"prettier": "1.14.3",
"prettier-eslint": "8.8.2",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"semantic-release": "15.13.3",
"sonarqube-scanner": "2.1.2",
"start-server-and-test": "1.7.11",
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"vuetify-loader": "1.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "feat",
"scope": "core",
"release": "major"
},
{
"type": "feat",
"scope": "content",
"release": "patch"
},
{
"type": "feat",
"scope": "image",
"release": "patch"
},
{
"type": "perf",
"release": "minor"
},
{
"breaking": true,
"release": "minor"
},
{
"type": "docs",
"scope": "readme",
"release": "patch"
},
{
"type": "docs",
"scope": "/web*/",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
],
"parserOpts": {
"mergePattern": "/[mM]erge (.*) #(\\d+) from (.*)$/",
"mergeCorrespondence": [
"plain",
"id",
"source"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"parserOpts": {
"mergePattern": "/[mM]erge (.*) #(\\d+) from (.*)$/",
"mergeCorrespondence": [
"plain",
"id",
"source"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogTitle": "# Portfolio version"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"yarn.lock"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"labels": [
"Bot: Semantic Release",
"Type: Bug",
"Status: In Review"
],
"releasedLabels": [
"Bot: Semantic Release",
"Status: Production"
]
}
]
],
"preset": "angular"
}
}