This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.32 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
{
"name": "camera-trap-webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode local",
"buildDev": "vue-cli-service build --mode development",
"buildTest": "vue-cli-service build --mode test",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"amazon-cognito-auth-js": "^1.2.4",
"aws-sdk": "^2.373.0",
"axios": "^0.18.0",
"babel": "^6.23.0",
"blueimp-md5": "^2.10.0",
"bootstrap": ">=4.3.1",
"fs-readfile-promise": "^3.0.1",
"handlebars": "^4.1.2",
"handsontable": "^5.0.2",
"highcharts": "^6.1.4",
"idx": "^2.5.2",
"jquery": "^3.4.1",
"js-cookie": "^2.2.0",
"js-yaml": "^3.13.1",
"leaflet.icon.glyph": "^0.2.0",
"left-pad": "^1.3.0",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"moment": "^2.24.0",
"popper.js": "^1.15.0",
"progressbar.js": "^1.0.1",
"proj4": "^2.5.0",
"tar": "^4.4.8",
"v-tooltip": "^2.0.0-rc.33",
"vee-validate": "^2.1.2",
"vue": "^2.5.17",
"vue-axios": "^2.1.3",
"vue-carousel": "^0.14.0",
"vue-lodash": "^2.0.0",
"vue-moment": "^4.0.0",
"vue-plugin-load-script": "^1.2.0",
"vue-recaptcha": "^1.1.1",
"vue-router": "^3.0.4",
"vue-select": "^2.5.1",
"vue-template-compiler": "2.5.17",
"vue2-datepicker": "^2.4.2",
"vue2-highcharts": "^1.2.5",
"vue2-leaflet": "^1.0.2",
"vue2-leaflet-markercluster": "^2.0.0",
"vue2-timepicker": "^0.1.4",
"vuedraggable": "^2.16.0",
"vuex": "^3.1.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.1.1",
"@vue/cli-plugin-eslint": "^3.1.5",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-prettier": "^4.0.1",
"babel-eslint": "^10.0.1",
"compass-mixins": "^0.12.10",
"compression-webpack-plugin": "^2.0.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"vue-cli": "^2.9.6",
"ware-loader": "^0.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css}": [
"prettier --write",
"git add"
],
"*.{js,jsx,vue}": [
"eslint --fix",
"git add"
]
}
}