generated from aware-diag-sapienza/va-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"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.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"html-webpack-harddisk-plugin": "^1.0.2",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"nodemon": "^2.0.12",
"postcss-loader": "^4.1.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.10.3",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"bootstrap-input-spinner": "^3.0.2",
"d3": "^6.7.0",
"d3-color-legend": "^1.3.2",
"d3-fetch": "^3.0.1",
"d3fc": "^15.2.4",
"node-fetch": "^2.6.1",
"node-fetch-polyfill": "^2.0.6",
"normalize.css": "^8.0.1"
},
"browserslist": [
"last 2 versions",
"> 1%"
],
"scripts": {
"start": "webpack serve --mode development --hot --inline",
"build": "webpack --mode production",
"css": "node-sass --include-path scss C:/Users/user/Documents/GitHub/Visual-Analytics/src/style.scss C:/Users/user/Documents/GitHub/Visual-Analytics/src/static/styles/style.css"
}
}