-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.67 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
{
"name": "oneline",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 4000",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"deploy": "cp ./dist/index.html ./dist/200.html && surge --domain oneline.surge.sh --project ./dist",
"deploy-beta": "cp ./dist/index.html ./dist/200.html && surge --domain oneline--beta.surge.sh --project ./dist",
"tunnel": "lt --port 4000 --subdomain oneline",
"publish": "npm run build && npm run deploy",
"publish-beta": "npm run build && npm run deploy-beta",
"production": "vue-cli-service serve --mode production"
},
"dependencies": {
"@daily-co/daily-js": "^0.26.0",
"@kyvg/vue3-notification": "^2.3.4",
"@shoelace-style/shoelace": "^2.0.0-beta.76",
"@shoelace-style/vue-sl-model": "^2.0.0",
"@vime/vue-next": "^5.3.1",
"@vueuse/head": "^0.7.5",
"axios": "^0.27.2",
"bootbox": "^5.5.2",
"bounce-ui-vue": "^0.5.0",
"chroma-js": "^2.4.2",
"click-outside-vue3": "^4.0.1",
"core-js": "^3.23.3",
"emoji-js": "^3.6.0",
"emoji-mart-vue-fast": "^10.2.2",
"emoji-picker-element": "^1.8.1",
"firebase": "9.8.2",
"json-stable-stringify": "^1.0.1",
"linkify-html": "^3.0.5",
"linkifyjs": "^3.0.5",
"medium-editor": "^5.23.3",
"nanoid": "^3.1.30",
"nprogress": "^0.2.0",
"pubnub": "^5.0.0",
"register-service-worker": "^1.7.1",
"sort-json": "^2.0.0",
"stylus": "0.58.1",
"stylus-loader": "3.0.2",
"v-lazy-image": "^2.0.1",
"vue": "^3.2.36",
"vue-horizontal": "^1.0.2",
"vue-masonry": "^0.15.0",
"vue-router": "^4.0.12",
"vue-skeletor": "^1.0.6",
"vue3-popper": "^1.5.0",
"zoom-by-ironex": "^1.0.1"
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "npm:@tailwindcss/postcss7-compat@^2.2.17",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "4.x.x",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.2.37",
"autoprefixer": "^9.8.8",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^8.7.1",
"postcss": "^7.0.39",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/no-deprecated-slot-attribute": "off",
"vue/multi-word-component-names": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"resolutions": {
"glob": "7.2.0"
}
}