forked from TarkovTracker/TarkovTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.09 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.09 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
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
{
"name": "tarkov-tracker",
"version": "2.3.27",
"private": true,
"scripts": {
"serve": "run-s watch",
"build": "vue-cli-service build",
"lint": "eslint src/ --ext .js,.vue",
"deploy": "run-s build deploy:firebase",
"browsersync": "sleep 15 && browser-sync start --port 5000 --proxy \"localhost:4999\" --files \"dist/*\"",
"build:dev": "vue-cli-service build --mode development",
"build:watch": "vue-cli-service build --mode development --watch --no-clean",
"deploy:firebase": "firebase deploy",
"lint:fix": "vue-cli-service lint --fix",
"postversion": "git push && git push --tags",
"preversion": "npm run swagger && git commit -a -m 'Update Swagger API documentation' || echo 'No OpenAPI changes to commit'",
"serve:firebase": "firebase emulators:start --export-on-exit=./.firebase-emulator-savedata",
"serve:firebase:persist": "firebase emulators:start --export-on-exit=./.firebase-emulator-savedata --import=./.firebase-emulator-savedata",
"serve:persist": "run-s watch:persist",
"serve:vue": "vue-cli-service serve",
"sitemap": "vue-cli-service sitemap",
"swagger": "node functions/api/v1/swagger.js",
"updata": "git submodule foreach git pull origin master",
"watch": "run-p build:watch serve:firebase browsersync",
"watch:persist": "run-p build:watch serve:firebase:persist browsersync"
},
"dependencies": {
"@mdi/font": "^6.5.95",
"d3": "^7.2.1",
"eslint-plugin-cypress": "^2.12.1",
"firebase": "^8.10.1",
"firebaseui": "^5.0.0",
"moment": "^2.29.3",
"qrcode.vue": "^1.7.0",
"vue": "^2.6.14",
"vue-meta": "^2.3.3",
"vue-router": "^3.5.3",
"vue-underscore": "^0.1.4",
"vue-unique-id": "^3.2.1",
"vuetify": "^2.6.1",
"vuex": "^3.6.2",
"vuex-pathify": "^1.5.1",
"vuex-persist": "^3.1.3",
"vuex-router-sync": "^5.0.0",
"vuexfire": "^3.2.5"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.15",
"@vue/cli-plugin-vuex": "^4.5.12",
"@vue/cli-service": "^4.5.13",
"@vuetify/vue-cli-plugin-preset-base": "~0.3.2",
"archiver": "^5.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.27.7",
"cypress": "^10.0.2",
"dotenv": "^16.0.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^8.0.3",
"git-describe": "^4.1.1",
"lint-staged": "^11.1.2",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"open": "^8.4.0",
"sass": "~1.32",
"sass-loader": "7.3.1",
"shelljs": "^0.8.5",
"vue-chartist": "^2.3.1",
"vue-cli-plugin-git-describe": "~1.0.0",
"vue-cli-plugin-sitemap": "~2.3.0",
"vue-cli-plugin-vuetify": "^2.5.1",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3",
"webfontloader": "^1.6.28",
"webpack": "^4.43.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://tarkovtracker.io"
}