-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.43 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
{
"name": "nuxt-auth",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"build": "cross-env NODE_ENV=development nuxt build",
"start": "cross-env NODE_ENV=development nuxt start",
"export": "cross-env NODE_ENV=development nuxt export",
"serve": "cross-env NODE_ENV=development nuxt serve",
"dev-prod": "cross-env NODE_ENV=production nuxt",
"build-prod": "cross-env NODE_ENV=production nuxt build",
"start-prod": "cross-env NODE_ENV=production nuxt start",
"export-prod": "cross-env NODE_ENV=production nuxt export",
"serve-prod": "cross-env NODE_ENV=production nuxt serve",
"build:copy:ssr": "rimraf functions/ssr && mkdirp functions/ssr && cp -R .nuxt/dist functions/ssr/dist",
"test": "jest",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"@mdi/js": "^5.9.55",
"@nuxt/typescript-runtime": "^0.4.10",
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@types/jwt-decode": "^2.2.1",
"@vimeo/player": "^2.12.2",
"axios": "^0.19.2",
"clipboard": "^2.0.8",
"cross-env": "^7.0.2",
"crypto-js": "^4.0.0",
"firebase": "^7.24.0",
"firebase-admin": "^8.10.0",
"firebase-functions": "^3.6.1",
"js-base64": "^3.6.0",
"js-md5": "^0.7.3",
"lodash.find": "^4.6.0",
"lodash.findindex": "^4.6.0",
"moment": "^2.29.1",
"nuxt": "^2.14.3",
"nuxt-client-init-module": "^0.1.9",
"style-helper": "^4.0.0",
"v-clipboard": "^2.2.3",
"vue": "^2.6.12",
"vue-class-component": "^7.2.5",
"vue-clipboard2": "^0.3.1",
"vue-jsonp": "^2.0.0",
"vue-photo-preview": "^1.1.3",
"vue-property-decorator": "^9.0.0",
"vue-snack": "^0.1.4",
"vuex": "^3.6.2",
"vuex-persistedstate": "^4.0.0-beta.2"
},
"devDependencies": {
"@nuxt/typescript-build": "^1.0.3",
"@nuxtjs/vuetify": "^1.11.2",
"@vue/test-utils": "^1.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"vue-jest": "^3.0.4"
}
}