-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
140 lines (140 loc) · 3.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
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
{
"name": "@weareopensource/vue",
"version": "0.1.0",
"description": "Node - Boilerplate Back : Express, Jwt, Mongo, Sequelize (Beta) (Based on meanjs and riess.js)",
"keywords": [
"vue",
"vuex",
"vuetify",
"jwt",
"jest",
"stack",
"boilerplate"
],
"private": false,
"author": "https://github.com/weareopensource/Vue/graphs/contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/weareopensource/Vue.git"
},
"scripts": {
"build": "run-s generateConfig vue:build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "./node_modules/.bin/eslint --fix ./src",
"commit": "npx cz",
"generateConfig": "node ./scripts/generateConfig.js",
"lint:vue": "vue-cli-service lint",
"release": "standard-version",
"release:auto": "npx semantic-release",
"snyk-protect": "snyk protect",
"start": "run-s generateConfig vue:serve",
"test": "",
"test:lint": "./node_modules/.bin/eslint ./src",
"vue:build": "vue-cli-service build",
"vue:serve": "vue-cli-service serve"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.1",
"@tryghost/content-api": "^1.11.21",
"@unhead/vue": "^1.11.13",
"@videojs-player/vue": "^1.0.0",
"aos": "^2.3.4",
"axios": "^1.7.8",
"lodash": "^4.17.21",
"marked": "^14.1.4",
"md5": "^2.3.0",
"moment": "^2.30.1",
"posthog-js": "^1.194.3",
"video.js": "7.21.5",
"vue": "^3.5.13",
"vue-loader": "^17.4.2",
"vue-markdown": "^2.2.4",
"vue-meta": "^3.0.0-alpha.8",
"vue-router": "^4.5.0",
"vue3-gravatar": "^3.0.0",
"vuetify": "^3.7.5",
"vuex": "^v4.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-e2e-cypress": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb": "^8.0.0",
"@weareopensource/conventional-changelog": "^1.7.0",
"chalk": "^5.3.0",
"commitizen": "^4.3.1",
"compression-webpack-plugin": "^11.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"object-path": "^0.11.8",
"prettier": "^3.4.1",
"sass": "^1.82",
"sass-loader": "16.0.3",
"semantic-release": "^24.2.0",
"standard-version": "^9.5.0",
"vue-cli-plugin-vuetify": "~2.5.8",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.97.0",
"webpack-plugin-vuetify": "^3.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/@weareopensource/conventional-changelog"
}
},
"release": {
"branches": [
{
"name": "master"
}
],
"ci": false,
"repositoryUrl": "https://github.com/weareopensource/Vue.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}
]
]
},
"snyk": true,
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}