forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"prepare-commit-msg": "node scripts/prepare-commit-message.js",
"commit-msg": "node scripts/lint-commit-message.js",
"pre-commit": "node scripts/warn-npm-install.js && yarn run lint && lerna run test -- -o"
}
},
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"start": "lerna run start --scope vuetifyjs.com --stream",
"lint": "lerna run lint --parallel",
"version": "node scripts/confirm-npm-tag.js",
"postversion": "node scripts/post-release-merge.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-local-rules": "^0.1.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"husky": "^1.3.1",
"inquirer": "^6.2.2",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jest-css-modules": "^1.1.0",
"jest-serializer-html": "^5.0.0",
"lerna": "^3.4.3",
"semver": "^5.6.0",
"shelljs": "^0.8.2",
"ts-jest": "^21.2.1",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"typestrict": "^1.0.2",
"vue": "^2.6.6",
"vue-template-compiler": "^2.6.6"
}
}