-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@gros/sprint-report",
"version": "0.0.1",
"description": "Dynamic sprint report generator in comparison visualization formats.",
"keywords": [
"visualization",
"decision-support"
],
"license": "Apache-2.0",
"author": "Leon Helwerda <l.s.helwerda@liacs.leidenuniv.nl>",
"files": [
"lib/**/*.js",
"lib/**/*.json",
"public/*.css",
"public/*.html",
"public/**/*.js",
"public/**/*.js.LICENSE.txt",
"public/fonts/",
"public/assets-manifest.json",
"public/mix-manifest.json",
"res/*.scss",
"template/*.mustache",
"webpack.mix.js"
],
"directories": {
"dist": "public",
"doc": "doc",
"lib": "lib",
"res": "res"
},
"repository": {
"type": "git",
"url": "https://github.com/grip-on-software/sprint-report.git"
},
"homepage": "https://github.com/grip-on-software/sprint-report",
"bugs": {
"url": "https://github.com/grip-on-software/sprint-report/issues"
},
"scripts": {
"start": "/bin/sh -ce 'npm run pretest -- $@ && npm run hot -- $@' --",
"dev": "cross-env NODE_ENV=development webpack --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development webpack --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production webpack --config=node_modules/laravel-mix/setup/webpack.config.js",
"pretest": "cross-env NODE_ENV=test webpack --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.15",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.3.0",
"html-webpack-plugin": "^5.5.3",
"laravel-mix": "^6.0.49",
"mustache-loader": "^1.4.3",
"nyc": "^15.1.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"vue-template-compiler": "^2.7.14",
"webpack-assets-manifest": "^5.1.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@gros/visualization-ui": "^0.8.2",
"axios": "^1.5.0",
"bulma": "^0.9.4",
"bulma-slider": "2.0.5",
"bulma-tooltip": "^3.0.2",
"copy-to-clipboard": "^3.3.3",
"cross-env": "^7.0.3",
"d3": "^5.16.0",
"d3-format": "^3.1.0",
"d3-sankey": "^0.12.3",
"d3plus-text": "^0.10.1",
"frac": "^1.1.2",
"immutable": "^4.3.4",
"javascript-natural-sort": "^0.7.1",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mustache": "^4.2.0",
"regression": "^2.0.1",
"sprintf-js": "^1.1.2",
"vulgarities": "0.0.2"
}
}