forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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": {
"build": "lerna run build --stream",
"start": "lerna run start --scope vuetifyjs.com --stream",
"lint": "lerna run lint --parallel",
"dev": "lerna run dev --scope vuetify --stream",
"version": "node scripts/confirm-npm-tag.js",
"postversion": "node scripts/post-release-merge.js"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-local-rules": "^0.1.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.12.0",
"eslint-plugin-vue": "^4.7.1",
"husky": "^1.1.2",
"inquirer": "^6.2.0",
"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",
"lint-staged": "^7.3.0",
"semver": "^5.6.0",
"shelljs": "^0.8.2",
"ts-jest": "^21.2.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"typescript-eslint-parser": "^20.0.0",
"typestrict": "^1.0.1",
"vue": "^2.5.17"
}
}