forked from backmeupplz/todorant-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·104 lines (104 loc) · 3.12 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
{
"name": "todorant-frontend",
"version": "1.10.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"distribute": "vue-cli-service serve --mode development",
"upload-translations": "node scripts/upload.js",
"download-translations": "node scripts/download.js && yarn prettier --single-quote --no-semi --write ./src/assets/localization.ts",
"increment-version": "versiony public/version.json --minor && versiony package.json --minor && git add . && git commit -m 'new version' && git push"
},
"dependencies": {
"@borodutch-labs/v-hotkey": "^0.9.1",
"@chenfengyuan/vue-countdown": "^1.1.5",
"@justinribeiro/lite-youtube": "^0.9.1",
"@prerenderer/renderer-jsdom": "^0.2.0",
"@types/chart.js": "^2.9.27",
"@types/crypto-js": "^4.0.1",
"@types/file-saver": "^2.0.1",
"@types/js-cookie": "^2.2.6",
"@types/linkify-it": "^2.1.0",
"@types/lodash": "^4.14.162",
"@types/node": "^14.14.5",
"@types/socket.io-client": "^1.4.34",
"@types/uuid": "^8.3.0",
"@upacyxou/vue-shortkey": "^3.1.8",
"@upacyxou/vue-simple-calendar": "^5.5.9",
"axios": "^0.21.0",
"chart.js": "^2.9.4",
"cnf-qrcode": "^1.0.13",
"color-scheme": "^1.0.1",
"crypto-js": "^4.0.0",
"dayjs": "^1.9.6",
"dexie": "^3.0.2",
"fg-loadcss": "^3.1.0",
"file-saver": "^2.0.2",
"js-cookie": "^2.2.1",
"linkify-it": "^3.0.2",
"lodash": "^4.17.20",
"prerender-spa-plugin": "^3.4.0",
"pug": "^3.0.0",
"pug-plain-loader": "^1.0.0",
"qr-code-styling": "^1.3.4",
"socket.io-client": "^2.3.1",
"tlds": "^1.212.0",
"url": "^0.11.0",
"uuid": "^8.3.1",
"vue": "^2.6.12",
"vue-apple-signin": "^0.1.2",
"vue-class-component": "^7.2.6",
"vue-clipboard2": "^0.3.1",
"vue-confetti": "^2.2.1",
"vue-cookie-law": "^1.13.3",
"vue-flag-icon": "^1.0.6",
"vue-i18n": "^8.26.5",
"vue-meta": "^2.4.0",
"vue-observe-visibility": "^0.4.6",
"vue-plugin-load-script": "^1.3.2",
"vue-property-decorator": "^9.0.2",
"vue-router": "^3.1.3",
"vue-share-buttons": "^1.0.6",
"vue-swipe-actions": "^2.0.0-beta.20",
"vue-telegram-login": "^2.1.0",
"vuedraggable": "^2.24.3",
"vuetify": "^2.5.0",
"vuex": "^3.0.1",
"vuex-persistedstate": "^4.0.0-beta.1"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.10.0",
"@vue/cli-plugin-typescript": "^4.5.8",
"@vue/cli-service": "^4.5.8",
"flat": "^5.0.2",
"prettier": "prettier/prettier#cd2b8a32b5ef77eb0047e7517b1ea22d605a094a",
"sass": "^1.27.0",
"sass-loader": "^10.0.4",
"terser-webpack-plugin": "4.2.3",
"typescript": "^4.4.4",
"versiony-cli": "^1.3.0",
"vue-template-compiler": "^2.6.12",
"vuex-class": "^0.3.2",
"vuex-module-decorators": "^1.0.1",
"webpack-bundle-analyzer": "^3.9.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"prettier": {
"pluginSearchDirs": [
"."
],
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}