forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·89 lines (89 loc) · 2.79 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
{
"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 && yarn run lint --since HEAD",
"pre-commit-bak": "node scripts/warn-npm-install.js && yarn run lint --since HEAD && yarn lerna run test --since HEAD"
}
},
"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",
"clean": "lerna clean",
"all-checks": "yarn lint && lerna run test && lerna run cy:run && yarn build"
},
"engines": {
"node": ">=12",
"yarn": "^1.19"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@mdi/font": "6.2.95",
"@mdi/js": "6.2.95",
"@mdi/svg": "6.2.95",
"@octokit/core": "^3.5.1",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@uni-component/core": "^0.9.0",
"@uni-component/react": "^0.9.0",
"@uni-component/vue": "^0.9.0",
"@vue/compiler-sfc": "^3.2.31",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"cross-spawn": "^6.0.5",
"eslint": "^8.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-local-rules": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-vue": "^8.0.3",
"eslint-plugin-vuetify": "^1.1.0",
"husky": "^3.0.1",
"inquirer": "^6.5.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-serializer-html": "^7.0.0",
"lerna": "^3.22.1",
"mkdirp": "^1.0.4",
"moment": "^2.27.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.43.4",
"semver": "^6.2.0",
"shelljs": "^0.8.4",
"typescript": "^4.4.4",
"vite-plugin-inspect": "^0.3.11",
"vue": "^3.2.31",
"vue-analytics": "^5.16.1",
"vue-meta": "^2.4.0",
"vue-router": "^4.0.12",
"vuex": "^3.0.1"
},
"resolutions": {
"@vue/test-utils": "2.0.0-rc.9"
}
}