-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.22 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
{
"name": "ui",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --mode=local",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --mode=production",
"lint": "vue-cli-service lint",
"deploy": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --mode=production && cd dist && gcloud storage cp -r ./ gs://jmyrberg.com && cd .. && gcloud storage buckets update --web-main-page-suffix=index.html --web-error-page=index.html gs://jmyrberg.com",
"reset-index-cache": "gcloud storage objects update --content-type=\"text/html\" --cache-control=\"no-cache, max-age=0, no-transform\" gs://jmyrberg.com/index.html",
"sitemap": "vue-cli-service sitemap"
},
"dependencies": {
"apexcharts": "^3.35.5",
"axios": "^0.27.2",
"core-js": "^3.25.3",
"file-saver": "^2.0.5",
"gm": "^1.25.0",
"konva": "^4.0.18",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"vue": "^2.7.10",
"vue-apexcharts": "^1.6.2",
"vue-konva": "^2.1.7",
"vue-recaptcha": "^2.0.3",
"vue-router": "^3.6.5",
"vuetify": "^2.6.10",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.9",
"@vue/cli-plugin-eslint": "~4.5.9",
"@vue/cli-plugin-router": "^4.5.19",
"@vue/cli-plugin-vuex": "^4.5.19",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^9.5.1",
"esm": "^3.2.25",
"lint-staged": "^13.0.3",
"sass": "~1.32.13",
"sass-loader": "^8.0.0",
"vue-cli-plugin-compression": "~1.2.0",
"vue-cli-plugin-sitemap": "~2.3.0",
"vue-cli-plugin-vuetify": "^2.5.8",
"vue-cli-plugin-webpack-bundle-analyzer": "~4.0.0",
"vue-template-compiler": "^2.7.10",
"vuetify-loader": "^1.9.2",
"webpack": "^4.42.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}