-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "milites",
"version": "0.1.0",
"description": "A Visual Analytics tool on Roman battles",
"author": "Luigi Russo, Matteo Salvino",
"license": "LGPL-3.0",
"private": true,
"main": "dist/bundle.js",
"homepage": "to_add",
"repository": {
"type": "git",
"url": "to_add"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^5.2.6",
"html-webpack-harddisk-plugin": "^1.0.2",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^9.0.3",
"style-loader": "^1.3.0",
"trim-newlines": ">=3.0.1",
"webpack": "^5.38.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"bootstrap": "^4.6.0",
"d3": "^5.16.0",
"jquery": "^3.6.0",
"normalize.css": "^8.0.1",
"popper.js": "^1.16.1"
},
"browserslist": [
"last 2 versions",
"> 1%"
],
"scripts": {
"start": "webpack-dev-server --mode development --hot --inline --open",
"build": "webpack --mode production"
}
}