forked from SpiritFour/whatsanalyze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.3 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
{
"name": "chat-analyzer-nuxt",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NUXT_ENV_LOCAL=1 nuxt",
"local": "NUXT_ENV_LOCAL=1 nuxt generate && NUXT_ENV_LOCAL=1 nuxt start",
"ci-dev-build": "NUXT_ENV_LOCAL=1 nuxt generate",
"deploy": "nuxt generate && push-dir --dir=dist --branch=gh-pages --cleanup",
"deploy-sebi": "nuxt generate && rm dist/CNAME && push-dir --remote=https://github.com/fellnerse/fellnerse.github.io.git --dir=dist --branch=gh-pages --cleanup"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,vue}": "eslint --cache --fix",
"*.{js,css,md,vue}": "prettier --write"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.15",
"@mdi/js": "^5.9.55",
"@nuxt/content": "^1.13.1",
"@nuxtjs/firebase": "^7.6.1",
"@nuxtjs/gtm": "^2.4.0",
"@nuxtjs/sentry": "7.1.13",
"@sentry/tracing": "^7.46.0",
"@sentry/vue": "7.47.0",
"@sentry/webpack-plugin": "^1.20.0",
"canvg": "^3.0.7",
"chart.js": "^2.9.4",
"core-js": "^3.9.1",
"country-currency-map": "^2.1.7",
"dompurify": "^2.2.6",
"emoji-aware": "^3.0.5",
"file-saver": "^2.0.5",
"firebase": "^8.8.0",
"firebase-tools": "^9.5.0",
"html2canvas": "^1.0.0-rc.7",
"jspdf": "^2.3.0",
"jspdf-autotable": "^3.5.14",
"jszip": "^3.6.0",
"moment": "^2.29.1",
"npm": "^7.5.4",
"nuxt": "2.16.3",
"nuxt-compress": "^4.1.0",
"nuxt-i18n": "^6.21.1",
"pako": "^2.1.0",
"push-dir": "^0.4.1",
"stopwords-de": "^0.3.0",
"stopwords-en": "^0.3.0",
"vue-chartjs": "^3.5.1",
"vue-gtag": "^1.11.0",
"whatsapp-chat-parser": "^3.1.0",
"worker-loader": "^3.0.8"
},
"devDependencies": {
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/vuetify": "^1.11.3",
"@types/pako": "^2.0.0",
"@vue/test-utils": "^1.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.6.0",
"husky": "4.2.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"vue-jest": "^3.0.4"
}
}