-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.37 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.37 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@weareopensource/vue",
"version": "0.1.0",
"type": "module",
"description": "Node - Boilerplate Back : Express, Jwt, Mongo, Sequelize (Beta) (Based on meanjs and riess.js)",
"keywords": [
"vue",
"pinia",
"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": {
"dev": "npm run generateConfig && npm run vite:dev",
"build": "npm run generateConfig && npm run vite:build",
"preview": "npm run generateConfig && npm run vite:preview",
"vite:dev": "vite",
"vite:build": "vite build",
"vite:preview": "vite preview",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"commit": "npx cz",
"generateConfig": "node ./scripts/generateConfig.js",
"check:migration": "node ./scripts/check-vite-migration.js",
"release": "npx semantic-release",
"snyk-protect": "snyk protect",
"test": "vitest"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@tryghost/content-api": "^1.12.2",
"@unhead/vue": "^2.0.19",
"aos": "^2.3.4",
"unhead": "^2.0.19",
"axios": "^1.13.2",
"dayjs": "^1.11.19",
"lodash-es": "^4.17.21",
"marked": "^17.0.1",
"pinia": "^3.0.4",
"posthog-js": "^1.306.1",
"video.js": "^8.23.4",
"vue": "^3.5.25",
"vue-router": "^4.6.3",
"vuetify": "^3.11.2"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vitest/coverage-v8": "^4.0.15",
"@vue/test-utils": "^2.4.6",
"@weareopensource/conventional-changelog": "^1.7.0",
"autoprefixer": "^10.4.22",
"chalk": "^5.6.2",
"commitizen": "^4.3.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.6.2",
"globals": "^16.5.0",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"object-path": "^0.11.8",
"prettier": "^3.7.4",
"sass": "^1.94",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vuetify": "^2.1.2",
"vitest": "^4.0.15",
"vue-eslint-parser": "^10.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/@weareopensource/conventional-changelog"
}
},
"release": {
"branches": [
{
"name": "master"
}
],
"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"
]
}