-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 3.75 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 3.75 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
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@pierreb-devkit/vue",
"version": "0.1.0",
"type": "module",
"description": "Vue 3 / Vuetify / Vite / JWT stack — standalone or fullstack with Node/Swift",
"keywords": [
"vue",
"pinia",
"vuetify",
"jwt",
"vite",
"stack",
"boilerplate"
],
"private": false,
"author": "https://github.com/pierreb-devkit/Vue/graphs/contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pierreb-devkit/Vue.git"
},
"scripts": {
"start": "npm run dev",
"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": "npm run test:unit",
"test:all": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:coverage": "npm run test:unit:coverage",
"test:e2e": "npx playwright test --config playwright.config.js",
"lint": "eslint src scripts *.config.js",
"lint:fix": "eslint src scripts *.config.js --fix",
"format": "prettier --write .",
"commit": "npx cz",
"generateConfig": "node ./scripts/generateConfig.js",
"check:migration": "node ./scripts/check-vite-migration.js",
"release:auto": "npx semantic-release",
"snyk-protect": "snyk protect"
},
"dependencies": {
"@casl/ability": "^6.8.1",
"@casl/vue": "^2.2.6",
"@fortawesome/fontawesome-free": "^7.2.0",
"@sentry/vue": "^10.51.0",
"@tryghost/content-api": "^1.12.7",
"@unhead/vue": "^3.1.0",
"aos": "^2.3.4",
"axios": "^1.16.0",
"dayjs": "^1.11.20",
"dompurify": "^3.4.2",
"lodash-es": "^4.18.1",
"marked": "^18.0.3",
"pinia": "^3.0.4",
"posthog-js": "^1.372.8",
"video.js": "^8.23.7",
"vue": "^3.5.33",
"vue-i18n": "^11.4.0",
"vue-router": "^5.0.6",
"vuetify": "^4.0.6"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.59.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.5",
"@vue/test-utils": "^2.4.10",
"autoprefixer": "^10.5.0",
"chalk": "^5.6.2",
"commitizen": "^4.3.1",
"cz-git": "^1.13.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.0",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"object-path": "^0.11.8",
"prettier": "^3.8.3",
"puppeteer": "^24.42.0",
"sass": "^1.99",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vuetify": "^2.1.3",
"vitest": "^4.1.5",
"vue-eslint-parser": "^10.4.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"release": {
"branches": [
{
"name": "master"
}
],
"repositoryUrl": "https://github.com/pierreb-devkit/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"
]
}