This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
90 lines (90 loc) · 2.95 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cacophony-browse",
"description": "Web interface for the Cacophony Project API",
"version": "0.0.0",
"author": "Cacophony Developers <[email protected]>",
"license": "GPLv3",
"private": true,
"scripts": {
"dev": "webpack serve --config webpack/webpack.dev.js --progress",
"release": "webpack --config webpack/webpack.release.js --progress",
"lint": "eslint ./src --ext .js,.vue,.ts",
"lint:fix": "eslint ./src --fix --ext .js,.vue,.ts",
"version": "./update-nfpm-version"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^0.1.10",
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.20.1",
"chart.js": "^2.9.4",
"cptv-player-vue": "github:TheCacophonyProject/cptv-player-vue#v1.0.11",
"cross-fetch": "^3.0.6",
"csvtojson": "^2.0.10",
"highcharts": "^9.1.1",
"jquery": "^3.5.1",
"leaflet": "^1.7.1",
"moment": "^2.29.1",
"suncalc": "^1.8.0",
"video.js": "^7.10.2",
"vue": "^2.6.12",
"vue-multiselect": "^2.1.6",
"vue-router": "^3.4.9",
"vue2-leaflet": "^2.6.0",
"vuelidate": "^0.7.6",
"vuex": "^3.6.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@types/chart.js": "^2.9.28",
"@types/jest": "^26.0.20",
"@types/suncalc": "^1.8.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"@webpack-cli/serve": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.6.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier-vue": "^2.1.1",
"eslint-plugin-vue": "^7.2.0",
"eslint-webpack-plugin": "^2.4.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.6",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^4.5.0",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"sass-loader": "^11.0.1",
"ts-loader": "^6.2.2",
"typescript": "^4.1.3",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.36.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
}
}