forked from chanlito/vuetify-tsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.95 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
81
82
{
"name": "vuetify-tsx",
"version": "0.26.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chanlito/vuetify-tsx"
},
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "npm run build:lib && npm run build:app",
"build:app": "vue-cli-service build --mode production",
"build:lib": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"serve": "vue-cli-service serve",
"postversion": "git push && git push --tags"
},
"dependencies": {
"vue": "^2.6.10",
"vue-router": "^3.0.6",
"vue-strict-prop": "^0.3.4",
"vue-tsx-support": "^2.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-pwa": "^3.8.0",
"@vue/cli-plugin-typescript": "^3.8.1",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"rimraf": "^2.6.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "3.4.5",
"vue-class-component": "^7.1.0",
"vue-cli-plugin-webpack-bundle-analyzer": "^1.3.0",
"vue-property-decorator": "^8.1.1",
"vue-template-compiler": "^2.6.10",
"vuetify": "^1.5.14"
},
"peerDependencies": {
"vuetify": "^1.3.x"
},
"babel": {
"presets": [
"@vue/app"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"eslintConfig": {
"extends": [
"plugin:vue/recommended",
"@vue/prettier",
"@vue/typescript"
],
"rules": {
"vue/require-default-prop": "off"
},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}