forked from aws-samples/aws-mlu-explain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "random-forest",
"version": "1.0.0",
"license": "Creative Commons Attribution-ShareAlike 4.0 International License",
"description": "MLU-Explain article about the random forest algorithm.",
"author": "Jenny Yeon & 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 ../../random-forest",
"build": "parcel build index.html --public-url ./",
"postbuild": "mkdir -p ../../random-forest && cp -r dist/* ../../random-forest ",
"release": "npm run build"
},
"dependencies": {
"d3": "^6.7.0",
"d3-delaunay": "^5.3.0",
"d3-svg-annotation": "^2.5.1",
"intersection-observer": "^0.5.0",
"rough-notation": "^0.4.0",
"smoothscroll-polyfill": "^0.4.4",
"stickyfill": "^1.1.1-strict",
"textures": "^1.2.3"
},
"devDependencies": {
"cssnano": "^4.1.10",
"parcel-bundler": "^1.12.4",
"sass": "^1.35.1"
}
}