-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.79 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
54
55
56
{
"name": "reproducemegit",
"version": "1.0.0",
"description": "ReproduceMeGit: A Visualization Tool for Analyzing Reproducibility of Jupyter Notebooks",
"scripts": {
"build": "NODE_ENV=production webpack --progress --colors -p && npm run flask-static-digest",
"start": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run webpack-watch\" \"npm run flask-server\"",
"webpack-watch": "NODE_ENV=debug webpack --mode development --watch",
"flask-server": "flask run --host=0.0.0.0",
"flask-static-digest": "flask digest compile",
"lint": "eslint \"assets/js/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fusion-jena/ReproduceMeGit.git"
},
"author": "Sheeba Samuel",
"license": "MIT",
"engines": {
"node": ">=12"
},
"bugs": {
"url": "https://github.com/fusion-jena/ReproduceMeGit/issues"
},
"homepage": "https://github.com/fusion-jena/ReproduceMeGit#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"bootstrap": "^4.3.1",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"popper.js": "^1.15.0",
"chart.js": "^2.9.3",
"chartjs-plugin-datalabels": "^0.7.0",
"d3": "^4.0.0",
"d3-selection-multi": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"concurrently": "^5.0.0",
"css-loader": "^5.2.4",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.3",
"file-loader": "^5.0.2",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"raw-loader": "^4.0.0",
"url-loader": "^3.0.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
}
}