-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.43 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.43 KB
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": "exploring-data.com",
"version": "1.0.0",
"scripts": {
"build:modules": "esbuild src/modules/worldbank-map.js --bundle --format=esm --minify --outdir=static/compiled",
"watch:modules": "esbuild src/modules/worldbank-map.js --bundle --format=esm --watch --outdir=static/compiled",
"build:scripts": "babel src/js --out-dir static/compiled --no-comments",
"watch:scripts": "nodemon -e js -w src/js -x 'npm run build:scripts'",
"build:styles": "sass --no-source-map src/css:static/css --style=compressed",
"watch:styles": "nodemon -e css -w src/css -x 'npm run build:styles'",
"copy:vendor": "copyfiles --flat node_modules/datatables.net/js/jquery.dataTables.min.js static/vendor/npm",
"build": "run-p build:*",
"watch": "run-p watch:*",
"copy": "npm run copy:vendor",
"serve": "logya serve",
"start": "run-p serve watch",
"update": "npm install -U --save && npm run copy:vendor"
},
"repository": {
"type": "git",
"url": "git@github.com:exploringdata/website.git"
},
"author": "Ramiro Gómez",
"license": "UNLICENSED",
"devDependencies": {
"babel-cli": "^6.26.0",
"copyfiles": "^2.1.1",
"esbuild": "^0.27.3",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"sass": "^1.97.3"
},
"dependencies": {
"@observablehq/plot": "^0.6.17",
"d3": "^7.9.0",
"d3-dsv": "^3.0.1",
"datatables.net-bs": "^1.10.20",
"topojson-client": "^3.1.0"
}
}