-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 2.21 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
{
"name": "jelly-party-extension",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint",
"format": "prettier --config .prettierrc --write */**/*.*",
"dev": "vue-cli-service build --watch --mode development",
"dev devtools": "concurrently --kill-others \"vue-cli-service build --watch --mode development\" \"npx vue-devtools\"",
"stage": "vue-cli-service build --watch --mode staging",
"stage devtools": "concurrently --kill-others \"vue-cli-service build --watch --mode staging\" \"npx vue-devtools\"",
"test": "tsc -p tests && node tests/build/src/index.js"
},
"dependencies": {
"@types/lodash-es": "^4.17.3",
"@types/puppeteer": "^3.0.2",
"bootstrap": "^4.5.2",
"bootstrap-vue": "^2.17.3",
"clipboard": "^2.0.6",
"core-js": "^3.6.4",
"lib-jitsi-meet-dist": "^2.1.3",
"lodash-es": "^4.17.15",
"loglevel": "^1.7.0",
"prompts": "^2.3.2",
"protoframe": "^0.2.1",
"puppeteer": "^5.3.0",
"v-emoji-picker": "^2.3.0",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-clipboard2": "^0.3.1",
"vue-dompurify-html": "^2.3.0",
"vue-fragment": "^1.5.1",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.4.3",
"vuejs-avataaars": "^4.0.1",
"vuex": "^3.5.1",
"vuex-map-fields": "^1.4.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-plugin-router": "~4.3.0",
"@vue/cli-plugin-typescript": "^4.5.6",
"@vue/cli-plugin-vuex": "^4.5.6",
"@vue/cli-service": "~4.3.0",
"@vue/devtools": "^5.3.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.1.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^1.19.1",
"sass": "^1.26.11",
"sass-loader": "^8.0.2",
"typescript": "^3.9.7",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.12",
"webextension-polyfill-ts": "^0.17.0"
}
}