-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "gcampus",
"version": "1.0.0",
"private": true,
"author": "Jonas Drotleff <[email protected]>",
"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.19",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"eslint": "^9.0.0",
"extract-loader": "^4.0.3",
"file-loader": "^6.2.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^5.0.2",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.2",
"chartjs-plugin-annotation": "^3.0.1",
"mapbox-gl": "^3.3.0"
}
}