forked from vuejs/vue-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 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
74
75
76
77
78
79
80
{
"private": true,
"workspaces": [
"packages/@vue/*",
"packages/test/*",
"packages/vue-cli-version-marker"
],
"scripts": {
"test": "node scripts/test.js",
"pretest": "yarn clean",
"lint": "eslint --fix packages/**/*.js packages/**/bin/*",
"check-links": "node scripts/checkLinks.js",
"clean": "rimraf packages/test/*",
"sync": "node scripts/syncDeps.js",
"boot": "node scripts/bootstrap.js",
"release": "yarn --pure-lockfile && yarn clean && node scripts/release.js",
"changelog": "node scripts/genChangelog.js run",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"patch-chromedriver": "node scripts/patchChromedriver.js"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/scripts/testSetup.js"
],
"testMatch": [
"**/__tests__/**/*.spec.js"
]
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
],
"packages/**/bin/*": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@vue/conventional-changelog": "^0.1.1",
"babel-core": "7.0.0-bridge.0",
"conventional-changelog": "^1.1.24",
"debug": "^3.1.0",
"eslint": "^4.16.0",
"eslint-plugin-graphql": "^2.1.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-vue-libs": "^2.1.0",
"execa": "^0.10.0",
"globby": "^8.0.1",
"http-server": "^0.11.1",
"inquirer": "^6.0.0",
"jest": "^23.1.0",
"lerna": "^2.8.0",
"lint-staged": "^7.2.2",
"memfs": "^2.8.0",
"minimist": "^1.2.0",
"puppeteer": "^1.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"vuepress": "^0.14.1",
"vuepress-theme-vue": "^1.1.0",
"yorkie": "^2.0.0"
},
"resolutions": {
"fs-monkey": "0.3.1",
"babel-core": "7.0.0-bridge.0",
"vue": "2.5.17",
"vue-loader": "15.3.0",
"vue-template-compiler": "2.5.17",
"vue-server-renderer": "2.5.17"
}
}