-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.15 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
88
89
90
{
"name": "dgtek-admin-dash",
"version": "7.8.0",
"tag": "1.9.0",
"license": "MIT",
"scripts": {
"worker-dev": "yarn add crypto-js && webpack --config ./worker/webpack.config.worker.js --mode development -w && yarn remove crypto-js",
"worker-prod": "yarn add crypto-js && webpack --config ./worker/webpack.config.worker.js --mode production && yarn remove crypto-js",
"serve": "yarn polygons-editor && yarn pits-editor && vue-cli-service serve",
"build": "yarn polygons-editor && yarn pits-editor && vue-cli-service build",
"build-prod": "yarn polygons-editor && yarn pits-editor && vue-cli-service build",
"build-staging": "yarn polygons-editor && vue-cli-service build --mode staging",
"build-master": "yarn polygons-editor && vue-cli-service build --mode master",
"lint": "vue-cli-service lint",
"prod": "node server.js",
"map-package": "yarn add dgtek-portal-map-package && mv node_modules/dgtek-portal-map-package/dist/map.worker.js public",
"clear-vue": "rm -r node_modules/dgtek-portal-polygons-editor/node_modules/vue",
"clear-vuetify": "rm -r node_modules/dgtek-portal-polygons-editor/node_modules/vuetify",
"polygons-editor": "yarn add dgtek-portal-polygons-editor && yarn clear-vue && yarn clear-vuetify",
"pits-editor-clear": "rm -r node_modules/dgtek-portal-pits-editor/node_modules/vuetify && rm -r node_modules/dgtek-portal-pits-editor/node_modules/vue",
"pits-editor": "yarn add dgtek-portal-pits-editor && yarn pits-editor-clear"
},
"dependencies": {
"dgtek-portal-map-package": "^1.4.8",
"dgtek-portal-pits-editor": "^1.0.95",
"dgtek-portal-polygons-editor": "^1.1.5",
"dgtek-styles": "^0.0.8",
"express": "^4.17.1",
"express-winston": "^4.2.0",
"garevna-date-functions": "^1.1.5",
"portal-google-autocomplete": "^1.0.85",
"tokml": "^0.4.0",
"vue": "2.6.11",
"vue-google-charts": "^0.3.3",
"vue-router": "^3.5.1",
"vuetify": "^2.5.7",
"winston": "^3.3.3",
"xlsx": "^0.17.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"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": "^6.2.2",
"lint-staged": "^9.5.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"vue-cli-plugin-vuetify": "~2.0.7",
"vue-template-compiler": "2.6.11",
"vuetify-loader": "^1.3.0",
"webpack-cli": "^4.5.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}