-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "@amzn/mlu-explain_double-descent",
"version": "1.0.0",
"license": "UNLICENSED",
"description": "MLU-Explain article about the double descent phenomena in machine learning.",
"author": "Jared Wilber",
"main": "dist/index.html",
"files": [
"dist/**"
],
"scripts": {
"clean": "rm -rf dist/ build/*",
"test": "echo \"Error: no test specified\" ",
"start": "parcel index.html",
"prebuild": "rm -rf dist && rm -rf ../../double-descent",
"build": "parcel build index.html --public-url ./",
"postbuild": "mkdir -p ../../double-descent && cp -r dist/* ../../double-descent ",
"release": "npm run build"
},
"dependencies": {
"d3-array": "^2.12.1",
"d3-axis": "^2.1.0",
"d3-interpolate": "^2.0.1",
"d3-format": "^2.0.0",
"d3-scale": "^3.3.0",
"d3-selection": "^2.0.0",
"d3-shape": "^2.1.0",
"d3-transition": "^2.0.0",
"intersection-observer": "^0.5.0",
"katex": "^0.12.0",
"scrollama": "^2.2.1",
"stickyfill": "^1.1.1-strict"
},
"devDependencies": {
"cssnano": "^4.1.10",
"parcel-bundler": "^1.12.4",
"sass": "^1.29.0"
}
}