forked from albionstatus/albionstatus-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "albionstatus-website",
"version": "3.0.0",
"description": "The frontend of https://albionstatus.com",
"author": "Alexander Lichter <npm@lichter.io>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/axios": "^5.6.0",
"@nuxtjs/google-adsense": "^1.1.3",
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/netlify-files": "^1.0.0",
"@nuxtjs/pwa": "^3.0.0-beta.19",
"@nuxtjs/sitemap": "^1.3.1",
"@nuxtjs/tailwindcss": "^1.1.0",
"glob-all": "^3.1.0",
"luxon": "^1.19.3",
"moment-timezone": "^0.5.17",
"nuxt-edge": "^2.10.0-26161929.686720f0",
"nuxt-svg-loader": "^1.0.1",
"v-tooltip": "^2.0.0-rc.31",
"vue-moment": "^4.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.1.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"eslint-loader": "^3.0.2",
"husky": "^3.0.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}