This repository has been archived by the owner on Jun 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.99 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": "gtasauwebsite",
"version": "2.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"lint": "vue-cli-service lint --fix",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/i18n/**/*.json'"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"@popperjs/core": "^2.0.6",
"@sweetalert2/theme-material-ui": "^3.1.0",
"animate.css": "^3.7.2",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.5.0",
"core-js": "^3.6.4",
"flag-icon-css": "^3.4.6",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"plyr": "^3.5.10",
"smooth-scroll": "^16.1.2",
"sweetalert2": "^9.7.2",
"tippy.js": "^5.2.1",
"vue": "^2.6.11",
"vue-i18n": "^8.0.0",
"vue-multiselect": "^2.1.6",
"vue-plyr": "^6.0.4",
"vue-router": "^3.1.5",
"vuex": "^3.1.2"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.3.0",
"@types/jquery": "^3.3.32",
"@types/js-cookie": "^2.2.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.4",
"@types/smooth-scroll": "^16.1.0",
"@types/webpack": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-eslint": "^4.2.0",
"@vue/cli-plugin-router": "^4.2.0",
"@vue/cli-plugin-typescript": "^4.2.0",
"@vue/cli-plugin-vuex": "^4.2.0",
"@vue/cli-service": "^4.2.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.1",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^9.5.0",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"typescript": "~3.7.5",
"vue-cli-plugin-i18n": "^0.6.1",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}