-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.93 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
{
"name": "sulfuron-guilds",
"version": "1.0.0",
"private": true,
"scripts": {
"seed": "node -r dotenv/config -r esm",
"serve": "firebase emulators:start --project staging --only hosting,functions,firestore",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "rimraf dist && nuxt generate",
"generate:dev": "rimraf dist && NODE_ENV=development nuxt generate",
"generate:staging": "rimraf dist && NODE_ENV=staging nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "yarn lint:js",
"test": "NODE_ICU_DATA=node_modules/full-icu jest --testPathIgnorePatterns=functions/test/",
"deploy:production": "DEPLOY_TARGET=production firebase deploy --project production",
"deploy:staging": "DEPLOY_TARGET=staging firebase deploy --project staging",
"storybook": "nuxt storybook"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --resolve-plugins-relative-to ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@amplitude/analytics-browser": "^1.1.4",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/composition-api": "^0.27.0",
"@nuxtjs/firebase": "^7.1.1",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sentry": "^5.0.3",
"@nuxtjs/sitemap": "^2.4.0",
"@sentry/tracing": "^6.4.1",
"@sentry/vue": "^7.31.1",
"@znck/prop-types": "^0.6.3",
"animate.css": "^4.1.1",
"cookie": "^0.4.1",
"epic-spinners": "^1.1.0",
"firebase": "^8.2.1",
"fuse.js": "^6.4.3",
"is-url": "^1.2.4",
"lodash": "^4.17.21",
"luxon": "^1.28.0",
"nuxt": "^2.14.0",
"nuxt-lazy-load": "^1.2.6",
"url-slug": "^3.0.2",
"v-click-outside": "^3.1.2",
"vue-cookies": "^1.7.4",
"vue-promised": "^2.1.0",
"vue2-animate": "^2.1.4",
"vuexfire": "^3.2.5"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/preset-typescript": "^7.18.6",
"@nuxt/image": "^0.5.0",
"@nuxt/types": "2.14",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/storybook": "^4.2.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"@sentry/webpack-plugin": "^1.15.1",
"@types/jest": "^26.0.23",
"@vue/test-utils": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^8.22.0",
"eslint-import-resolver-nuxt": "^1.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-vue": "8.7.0",
"esm": "^3.2.25",
"faker": "^5.4.0",
"firebase-admin": "^9.11.0",
"firebase-tools": "^9.14.0",
"full-icu": "^1.3.4",
"git-rev-sync": "^3.0.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"postcss": "^8.3.11",
"rimraf": "^3.0.2",
"vue-jest": "^3.0.7"
}
}