-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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
{
"name": "ps2alerts-website",
"version": "4.4.1",
"private": true,
"license": "GNU",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"analyze": "nuxt build --analyze",
"generate": "nuxt generate",
"lint": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:fix": "yarn lint --fix",
"prepare": "husky install"
},
"resolutions": {
"@nuxt/kit": "3.0.0-rc.13"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^2.0.10",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/google-gtag": "^1.0.4",
"@svgdotjs/svg.filter.js": "^3.0.8",
"@svgdotjs/svg.js": "^3.1.2",
"chart.js": "2.9.4",
"chartjs-plugin-annotation": "^0.5.7",
"core-js": "^3.30.2",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"leaflet": "^1.9.4",
"memory-fs": "^0.5.0",
"nuxt": "^2.16.3",
"nuxt-leaflet": "^0.0.27",
"vue-chartjs": "^3.5.1",
"vue-numeral-filter": "^2.0.0",
"vue2-leaflet": "^2.7.1",
"vuejs-datatable": "^2.0.0-alpha.7",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@nuxt/types": "^2.16.3",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/style-resources": "^1.2.1",
"@nuxtjs/tailwindcss": "^5.0.2",
"@nuxtjs/vuetify": "^1.11.3",
"autoprefixer": "^10.4.14",
"babel-core": "7.0.0-bridge.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"node-sass": "^7.0.1",
"postcss": "^8.4.21",
"postcss-extend-rule": "^4.0.0",
"prettier": "^2.8.7",
"sass": "^1.60.0",
"sass-loader": "10"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
]
}
}