forked from tianyong90/we-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.35 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "lerna run serve --ignore docs --parallel --no-bail -- --colors",
"dev:docs": "lerna run dev --scope docs --stream -- --colors",
"lint": "lerna run lint --parallel -- --color",
"lint:fix": "lerna run lint --parallel -- --color --fix",
"test": "lerna run test --scope we-vue --stream",
"test:watch": "lerna run test:watch --scope we-vue --stream",
"test:coverage": "lerna run test:coverage --scope we-vue --stream",
"test:ci": "lerna run test:coverage --scope we-vue --stream -- --runInBand",
"test:demo": "lerna run test:e2e --scope demo --stream",
"release": "yarn --pure-lockfile && node scripts/release.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-jest": "^24.8.0",
"commitizen": "^4.0.1",
"concurrently": "^5.0.0",
"conventional-changelog": "^3.0.5",
"conventional-changelog-cli": "^2.0.12",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"husky": "^3.0.0",
"inquirer": "^7.0.0",
"lerna": "^3.7.1",
"lint-staged": "^9.3.0",
"prettier": "^1.14.3",
"reflect-metadata": "^0.1.12",
"semver": "^6.0.0",
"shelljs": "^0.8.0",
"stylelint": "^11.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^19.0.0",
"tslint": "^5.16.0",
"typescript": "^3.4.3",
"typestrict": "^1.0.2",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.28.0",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.2.1"
},
"resolutions": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.0.0"
}
}