-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/tookit/vmajs"
},
"author": "Michael Wang",
"bugs": {
"url": "https://github.com/tookit/vmajs/issues"
},
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"docs:deploy": "npx lerna run docs:deploy --scope vma.org --stream",
"docs:dev": "npx lerna run docs:dev --scope vma.org --stream",
"docs:build": "npx lerna run docs:build --scope vma.org --stream",
"preview": "npx lerna run serve --scope vma --stream",
"test": "npm run test:common && npm run test:server && npm run test:ui",
"build:lib": "lerna run build:lib --scope vma-lib",
"publish": "lerna publish"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-plugin-eslint": "^4.5.10",
"@vue/cli-plugin-unit-jest": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.1.2",
"babel-eslint": "^10.0.3",
"concurrently": "^3.6.0",
"core-js": "^3.8.2",
"eslint": "^7.18.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.1",
"lerna": "^4.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"release-it": "^14.4.1",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"vue": "^2.6.12",
"vue-cli-plugin-vuetify": "^2.3.1",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.7.2"
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"vuetify": "^2.5.0"
}
}