-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "scalamatsuri.org",
"version": "0.3.0",
"description": "The largest international Scala conference in Asia",
"author": "scalamatsuri.org",
"private": true,
"engines": {
"node": ">= 16.13.0"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"generate": "nuxt generate",
"start": "nuxt start",
"serve": "nuxt generate && firebase serve -P staging",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore .",
"fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore .",
"precommit": "run-s lint",
"test": "jest",
"clean": "rimraf dist",
"predeploy": "run-s lint build generate",
"login": "firebase login",
"deploy:functions": "firebase deploy --only functions"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^2.0.10",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "^7.2.2",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^5.1.7",
"core-js": "^3.22.3",
"cross-env": "^7.0.3",
"file-loader": "^6.2.0",
"firebase": "^9.9.3",
"firebase-admin": "^11.0.1",
"firebase-functions": "^3.22.0",
"firebase-tools": "^11.8.0",
"firebaseui": "^6.0.1",
"jimp": "^0.16.1",
"lodash": "^4.17.21",
"luxon": "^2.3.2",
"nuxt": "^2.15.8",
"nuxt-fontawesome": "^0.4.0",
"nuxt-mq": "^2.0.2",
"responsive-loader": "^2.3.0",
"sanitize.css": "^13.0.0",
"vue": "^2.6.14",
"vue-lazyload": "^1.3.3",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vue2-google-maps": "^0.10.7",
"vuedraggable": "^2.24.3",
"vuex-typescript-fsa": "^0.4.1",
"webpack": "^4.46.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@aceforth/nuxt-optimized-images": "^1.4.0",
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@intlify/vue-i18n-loader": "^4.2.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config": "^9.0.0",
"@nuxtjs/eslint-config-typescript": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-analytics": "^2.4.0",
"@types/chai": "^4.3.1",
"@types/firebase": "^3.2.1",
"@types/jest": "^27.4.1",
"@types/js-yaml": "3.12.2",
"@types/luxon": "^2.3.1",
"@types/mocha": "^9.1.1",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.4.4",
"chai": "^4.3.6",
"eslint": "^8.4.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.2.0",
"eslint-webpack-plugin": "^3.1.1",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0",
"jest": "^27.4.4",
"lqip-loader": "^2.2.1",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sass": "^1.54.5",
"sass-loader": "^10.3.1",
"ts-jest": "^27.1.1",
"vue-jest": "^3.0.4",
"webp-loader": "^0.6.0"
}
}