-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "eyc-live-stats",
"version": "1.0.0",
"description": "eyc livescoring through xbowling api",
"main": "index.js",
"dependencies": {
"crossfilter2": "1.5.4",
"d3-array": "^3.2.4",
"d3-dsv": "^3.0.1",
"d3-format": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"highcharts": "^10.3.3",
"mithril": "^0.2.3",
"redugator": "^0.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"browser-sync": "^2.11.1",
"concurrently": "^8.2.0",
"esbuild": "^0.18.0",
"postcss-cli": "^2.5.1",
"stylus": "^0.54.2",
"typescript": "^5.4.5"
},
"scripts": {
"serve": "browser-sync start --files app.min.js,app.css --server --logLevel debug",
"build:js": "esbuild --sourcemap --outfile=app.min.js --bundle --minify stats.js",
"build:css": "stylus app.styl -c && postcss --u autoprefixer -o app.css app.css",
"build": "npm run build:js && npm run build:css",
"watch:js": "esbuild --sourcemap --outfile=app.min.js --bundle --watch stats.js",
"watch:css": "stylus -w app.styl",
"watch": "concurrently npm:watch:js npm:watch:css",
"dev": "concurrently npm:serve npm:watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT"
}