-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.08 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
{
"name": "vue3-packages",
"description": "This is the monorepo for Vue 3 Packages",
"private": true,
"sideEffects": false,
"author": {
"name": "NanoGiants GmbH",
"email": "[email protected]",
"url": "http://nanogiants.de/"
},
"contributors": [
{
"name": "René Heinen",
"email": "[email protected]"
}
],
"homepage": "https://github.com/nanogiants/vue3-packages/",
"repository": {
"type": "git",
"url": "https://github.com/nanogiants/vue3-packages.git"
},
"license": "MIT",
"scripts": {
"lerna:install": "lerna bootstrap",
"lerna:test": "lerna run test",
"lerna:lint": "lerna run lint",
"lerna:build": "lerna run build",
"lerna:changed": "lerna changed",
"lerna:version": "lerna version -m \"chore(release): publish %s\"",
"lerna:publish": "lerna publish from-package --yes --no-verify-access",
"clean:modules": "rm -rf node_modules && rm -rf packages/*/node_modules"
},
"dependencies": {
"vue": "^3.2.0"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/compiler-sfc": "^3.2.24",
"@vue/test-utils": "^2.0.0-rc.17",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.1",
"tslib": "^2.3.1",
"typescript": "^4.5.3",
"vite": "^2.7.2",
"vue-tsc": "^0.29.8"
},
"lint-staged": {
"*.{ts,vue}": "eslint --max-warnings 0 --no-ignore",
"!(*.d).{ts,vue,json}": "prettier --check \"!(*.d).{ts,vue,json}\""
},
"workspaces": [
"packages/*"
]
}