-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "functions",
"scripts": {
"prebuild": "npm run lint && rm -rf lib .nuxt && cp -r ../src/.nuxt .",
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"serve": "npm run build && firebase emulators:start",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "10"
},
"main": "lib/index.js",
"dependencies": {
"@nuxt/typescript-runtime": "^2.0.0",
"@nuxtjs/axios": "^5.12.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.8",
"@types/debounce": "^1.2.0",
"@types/slug": "^0.9.1",
"@types/uuid": "^8.3.0",
"body-parser": "^1.19.0",
"buefy": "^0.9.4",
"bulma-helpers": "^0.3.12",
"cookie-parser": "^1.4.5",
"cookie-universal-nuxt": "^2.1.4",
"cors": "^2.8.5",
"cropperjs": "^1.5.9",
"debounce": "^1.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^8.1.1",
"firebase-admin": "^9.4.1",
"firebase-functions": "^3.11.0",
"handlers-module": "file:modules/handlers-module",
"http-status-codes": "^2.1.4",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"nuxt": "^2.14.7",
"nuxt-i18n": "^6.15.4",
"nuxt-property-decorator": "^2.8.8",
"rxjs": "^6.6.3",
"sitemap": "^6.3.3",
"slug": "^4.0.2",
"sync-request": "^6.1.0",
"types-module": "file:modules/types-module",
"uuid": "^8.3.1",
"vee-validate": "^3.4.5",
"vue-infinite-loading": "^2.4.5",
"vue-lazyload": "^1.3.3",
"vue-rx": "^6.2.0",
"vuex-class": "^0.3.2",
"zlib": "^1.0.5"
},
"devDependencies": {
"@nuxt/typescript-build": "^2.0.3",
"@nuxtjs/stylelint-module": "^4.0.0",
"firebase-functions-test": "^0.2.3",
"stylelint": "^13.8.0",
"tslint": "^6.1.2",
"typescript": "^4.1.2"
},
"private": true
}