-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.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
{
"name": "gcampus",
"version": "1.0.0",
"private": true,
"author": "Jonas Drotleff <j.drotleff@desk-lab.de>",
"repository": {
"type": "git",
"url": "git+https://github.com/desklab/gcampus.git"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"dev.once": "webpack --no-watch --mode development",
"lint": "eslint \"gcampus/*/static_src/js/*.js\"",
"lint.fix": "eslint --fix \"gcampus/*/static_src/js/*.js\""
},
"browserslist": [
"last 2 versions",
"> 0.5%",
"ie >= 11"
],
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.21",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.23.0",
"extract-loader": "^4.0.3",
"file-loader": "^6.2.0",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"sass": "^1.84.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-remove-empty-scripts": "^1.0.4"
},
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^5.0.3",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.8",
"chartjs-plugin-annotation": "^3.1.0",
"mapbox-gl": "^3.10.0"
}
}