-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "@nuxtjs/vuetify",
"version": "1.12.3",
"description": "Vuetify Module for Nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Pooya Parsa (@pi0)"
},
{
"name": "Kevin Marrec (@kevinmarrec)"
}
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "nuxt-community/vuetify-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc && nuxt-ts test/fixture",
"build": "tsc",
"lint": "eslint --ext .ts,.js,.vue .",
"test": "yarn lint && jest",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"prepare": "husky install"
},
"files": [
"dist",
"templates"
],
"dependencies": {
"deepmerge": "^4.2.2",
"sass": "~1.32.13",
"sass-loader": "^10.2.0",
"vuetify": "^2.6",
"vuetify-loader": "^1.7.3"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^7.0.2",
"@types/jest": "^27.0.3",
"@types/sass": "^1.43.1",
"codecov": "^3.8.2",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"nuxt": "^2.15.8",
"nuxt-webfontloader": "^1.1.0",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"typescript": "~4.0"
}
}