-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
117 lines (117 loc) · 2.86 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "youtube-material",
"version": "0.1.0",
"license": "MIT",
"description": "Attempt at making material SPA of youtube using VueJS.",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"build-staging": "vue-cli-service build --modern --mode staging",
"lint": "vue-cli-service lint"
},
"bugs": {
"url": "https://github.com/pranavjindal999/Youtube-Material/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pranavjindal999/Youtube-Material.git"
},
"keywords": [
"Youtube",
"material",
"vue",
"vuetify"
],
"dependencies": {
"autolinker": "^1.7.1",
"axios": "^0.18.0",
"dayjs": "^1.7.7",
"format-duration": "^1.3.1",
"hammerjs": "^2.0.8",
"iso8601-duration": "^1.1.6",
"js-sha256": "^0.9.0",
"jsonp": "^0.2.1",
"lazyload-css": "^1.0.4",
"load-js": "3.0.2",
"lodash": "^4.17.11",
"register-service-worker": "^1.0.0",
"store2": "^2.7.0",
"toprogress2": "^2.0.0",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-i18n": "^8.1.0",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1",
"vuetify": "^1.2.3",
"vuex": "^3.0.1",
"vuex-module-decorators": "^0.9.8",
"vuex-persist": "^1.5.4"
},
"devDependencies": {
"@types/format-duration": "^1.0.0",
"@types/gapi": "^0.0.36",
"@types/hammerjs": "^2.0.36",
"@types/jsonp": "^0.2.0",
"@types/lodash": "^4.14.116",
"@types/ms": "^0.7.30",
"@types/youtube": "^0.0.34",
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-plugin-pwa": "^3.0.3",
"@vue/cli-plugin-typescript": "^3.0.3",
"@vue/cli-service": "^3.0.3",
"@vue/eslint-config-prettier": "^3.0.3",
"@vue/eslint-config-typescript": "^3.0.3",
"babel-plugin-lodash": "^3.3.4",
"git-revision-webpack-plugin": "^3.0.3",
"lint-staged": "^7.2.2",
"robotstxt-webpack-plugin": "^4.0.1",
"sitemap-webpack-plugin": "^0.6.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "^3.0.0",
"vue-template-compiler": "^2.5.17",
"vuetify-loader": "^1.0.5",
"webpack-bundle-analyzer": "^3.0.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"@vue/prettier",
"@vue/typescript"
],
"rules": {
"vue/attributes-order": 0
},
"parserOptions": {
"parser": "typescript-eslint-parser"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}