-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.32 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
{
"name": "@gros/leaderboard",
"version": "0.0.1",
"description": "Project statistics as a leaderboard.",
"keywords": [
"visualization",
"decision-support"
],
"license": "GPL-3.0-or-later",
"author": "Leon Helwerda <[email protected]>",
"files": [
"lib/*.js",
"lib/*.json",
"public/*.css",
"public/*.html",
"public/*.js",
"public/*.js.LICENSE.txt",
"public/fonts/",
"public/mix-manifest.json",
"res/*.scss",
"template/*.mustache",
"webpack.mix.js"
],
"directories": {
"dist": "public",
"lib": "lib",
"res": "res"
},
"repository": {
"type": "git",
"url": "https://github.com/grip-on-software/leaderboard.git"
},
"homepage": "https://github.com/grip-on-software/leaderboard",
"bugs": {
"url": "https://github.com/grip-on-software/leaderboard/issues"
},
"scripts": {
"start": "/bin/sh -ce 'npm run pretest -- $@ && npm run hot -- $@' --",
"dev": "cross-env NODE_ENV=development webpack --progress --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/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",
"laravel-mix": "^6.0.49",
"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"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@gros/visualization-ui": "^0.8.2",
"axios": "^1.5.0",
"bulma": "^0.9.4",
"bulma-tooltip": "^3.0.2",
"cross-env": "^7.0.3",
"d3": "^7.8.5",
"html-webpack-plugin": "^5.5.3",
"javascript-natural-sort": "^0.7.1",
"lodash": "^4.17.21",
"mustache-loader": "^1.4.3"
}
}