forked from aws-samples/aws-mlu-explain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1023 Bytes
/
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
{
"name": "double-descent2",
"version": "1.0.0",
"license": "Creative Commons Attribution-ShareAlike 4.0 International License",
"description": "MLU-Explain article about double descent, but with more math.",
"author": "Brent Werness & 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-descent2",
"build": "parcel build index.html --public-url ./",
"postbuild": "mkdir -p ../../double-descent2 && cp -r dist/* ../../double-descent2 ",
"release": "npm run build"
},
"dependencies": {
"d3-axis": "^2.1.0",
"d3-line": "0.0.1",
"d3-scale": "^3.3.0",
"d3-selection": "^2.0.0",
"d3-shape": "^2.1.0",
"d3-transition": "^2.0.0",
"katex": "^0.12.0"
},
"devDependencies": {
"cssnano": "^4.1.10",
"parcel-bundler": "^1.12.4",
"sass": "^1.29.0"
}
}