-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
69 lines (69 loc) · 2.14 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
{
"name": "arcade-songs",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nuxt",
"dev:host": "nuxt --hostname 0.0.0.0",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate --target static",
"serve": "nuxt start --target static",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"lintfix": "yarn lint:js --fix && yarn lint:style --fix"
},
"dependencies": {
"@nuxt/content": "^1.15.1",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/composition-api": "^0.33.0",
"@nuxtjs/google-gtag": "^1.0.4",
"@nuxtjs/i18n": "^7.3.1",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^8.0.8",
"@nuxtjs/sitemap": "^2.4.0",
"@pinia/nuxt": "^0.2.1",
"@vueuse/core": "^10.2.1",
"canvas-confetti": "^1.6.0",
"copy-to-clipboard": "^3.3.3",
"core-js": "^3.31.1",
"echarts": "^5.5.1",
"file-saver": "^2.0.5",
"nuxt": "^2.17.1",
"pinia": "^2.1.4",
"query-string": "^7.1.3",
"select-files": "^1.0.1",
"sleep-promise": "^9.1.0",
"vue": "^2.7.14",
"vue-echarts": "^7.0.3",
"vue-server-renderer": "^2.7.14",
"vuetify": "^2.7.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@nuxt/types": "^2.17.1",
"@nuxt/typescript-build": "^3.0.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/stylelint-module": "^4.2.1",
"@nuxtjs/vuetify": "^1.12.3",
"@sentry/webpack-plugin": "^2.22.6",
"@types/canvas-confetti": "^1.6.0",
"@types/file-saver": "^2.0.5",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.15.1",
"postcss-html": "^1.5.0",
"stylelint": "^15.10.1",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-stylistic": "^0.4.3",
"typescript": "^5.1.6",
"webpack": "^4.46.0",
"yaml-loader": "^0.8.0"
}
}