-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.63 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
41
42
43
44
45
{
"name": "detourr",
"license": "MIT",
"dependencies": {
"@stdlib/math-base-special-betainc": "^0.0.6",
"@tensorflow/tfjs-backend-wasm": "^3.15.0",
"@tensorflow/tfjs-core": "^3.15.0",
"shiny": "https://github.com/rstudio/shiny#v1.8.0",
"three": "^0.128.0",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/register": "^7.13.16",
"@types/three": "^0.129.1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.10.1",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^6.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"style-loader": "^3.1.0",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.13.3"
},
"scripts": {
"build": "rm -rf inst/htmlwidgets/lib/scatter_widget && webpack --config ./webpack/package.config.ts && R -q -e 'devtools::document(); devtools::build_readme()' && R CMD INSTALL $(git rev-parse --show-toplevel)",
"build-dev": "rm -rf dev_build && webpack --config ./webpack/dev.config.ts",
"start-dev": "yarn webpack serve --config webpack/dev.config.ts --open",
"clean": "rm -rf dev_build inst/htmlwidgets/lib/scatter_widget",
"check": "R -q -e 'devtools::check()'",
"test": "R -q -e 'devtools::test()'",
"format": "yarn prettier --write $(git rev-parse --show-toplevel)/srcts && R -q -e 'styler::style_pkg()'"
},
"resolutions": {
"minimist": "^1.2.6",
"async": "^2.6.4",
"follow-redirects": "1.14.8"
},
"packageManager": "[email protected]"
}