This repository was archived by the owner on Feb 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.92 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.92 KB
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
{
"name": "web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "NUXT_ENV_CURRENT_GIT_SHA=`git rev-parse HEAD` nuxt generate",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"backend:api": "npx swagger-typescript-api -p ..\\api\\docs\\swagger.json -o ./store -n backend.ts --no-client",
"test": "jest"
},
"dependencies": {
"@mdi/js": "^7.2.96",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/firebase": "^8.2.2",
"@nuxtjs/sentry": "^6.0.3",
"@sentry/tracing": "6",
"@tiptap/starter-kit": "^2.0.0-beta.204",
"@tiptap/vue-2": "^2.0.0-beta.204",
"core-js": "^3.37.0",
"firebase": "^9.23.0",
"firebaseui": "^6.0.2",
"flag-icons": "^6.7.0",
"nuxt": "^2.17.1",
"v-phone-input": "^2.0.1",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vuedraggable": "^2.24.3",
"vuetify": "^2.6.15",
"vuex-module-decorators": "^2.0.0",
"webpack": "^5.99.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.6",
"@nuxt/types": "^2.17.1",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/vuetify": "^1.12.3",
"@vue/test-utils": "^1.3.6",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^9.18.1",
"jest": "^27.4.4",
"prettier": "^2.8.8",
"ts-jest": "^27.1.1",
"vue-jest": "^3.0.4"
}
}