-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "va-template",
"version": "0.0.1",
"description": "Template for Visual Analytics Course projects",
"author": "A.WA.RE Research Group (http://aware.diag.uniroma1.it/)",
"license": "LGPL-3.0",
"private": true,
"main": "dist/bundle.js",
"homepage": "https://github.com/aware-diag-sapienza/va-template",
"repository": {
"type": "git",
"url": "https://github.com/aware-diag-sapienza/va-template.git"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.3",
"postcss-loader": "^7.0.1",
"sass-loader": "^13.1.0",
"standard": "^17.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"d3": "^7.6.1",
"normalize.css": "^8.0.1"
},
"browserslist": [
"last 2 versions",
"> 1%"
],
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production"
}
}