-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.71 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
{
"name": "vui",
"version": "0.1.0",
"private": true,
"main": "./src/main.js",
"workspaces": [
"packages/ui/*"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"c": "git-cz",
"u": "lerna clean",
"p": "yarn build:prod && lerna publish"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-router": "^3.2.0"
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.2.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"commitizen": "4.2.3",
"cross-env": "7.0.3",
"cz-lerna-changelog": "2.0.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"husky": "5.1.3",
"lerna": "^3.22.1",
"lint-staged": "10.5.4",
"plop": "2.7.4",
"rimraf": "3.0.2",
"rollup": "2.41.4",
"rollup-plugin-postcss": "4.0.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-vue": "5.1.9",
"standard": "16.0.3",
"vue-template-compiler": "2.6.12"
}
}