forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·90 lines (90 loc) · 2.75 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
{
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"prepare-commit-msg": "node scripts/prepare-commit-message.js",
"commit-msg": "node scripts/lint-commit-message.js",
"pre-commit": "node scripts/warn-npm-install.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuetifyjs/vuetify.git"
},
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"start": "lerna run start --scope vuetifyjs.com --stream",
"lint": "lerna run lint --parallel --stream",
"lint:fix": "lerna run lint:fix --parallel",
"version": "node scripts/confirm-npm-tag.js",
"prepare": "node scripts/post-install.js",
"postversion": "node scripts/post-release-merge.js",
"postinstall": "patch-package",
"clean": "lerna clean",
"changelog": "conventional-changelog -u -p vuetify",
"all-checks": "yarn lint && lerna run test && lerna run cy:run && yarn build"
},
"engines": {
"node": ">=12",
"yarn": "^1.19"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@mdi/font": "6.2.95",
"@mdi/js": "6.2.95",
"@mdi/svg": "6.2.95",
"@octokit/core": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vue/compiler-sfc": "^3.3.4",
"@vueuse/head": "^1.1.23",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.3",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-vuetify": "^1.1.0",
"conventional-github-releaser": "^3.1.5",
"cross-env": "^7.0.3",
"cross-spawn": "^6.0.5",
"eslint": "^8.37.0",
"eslint-config-standard": "^17.0.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-local-rules": "^1.3.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-vue": "^9.10.0",
"eslint-plugin-vuetify": "^2.0.0-beta.2",
"husky": "^3.0.1",
"inquirer": "^6.5.2",
"jest": "^28.1.3",
"jest-cli": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-serializer-html": "^7.1.0",
"lerna": "^3.22.1",
"magic-string": "^0.30.0",
"mkdirp": "^1.0.4",
"moment": "^2.29.4",
"patch-package": "^6.5.1",
"sass": "^1.60.0",
"semver": "^6.2.0",
"shelljs": "^0.8.5",
"typescript": "^5.0.2",
"upath": "^2.0.1",
"vite-plugin-inspect": "^0.7.18",
"vite-plugin-warmup": "^0.0.2",
"vue": "^3.3.1",
"vue-analytics": "^5.16.1",
"vue-router": "^4.1.6",
"vue-tsc": "^1.6.4",
"yargs": "^17.7.1"
}
}