-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
24 lines (24 loc) · 851 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
{
"name": "react_shiny_template",
"version": "1.0.0",
"description": "",
"scripts": {
"prod": "cd Shiny && Rscript run_shiny.R",
"dev": "npm run start_react & npm run start_shiny",
"start_react": "npm start --prefix React",
"start_shiny": "cd Shiny && Rscript run_shiny.R dev",
"build": "npm run build --prefix React && rm -rf Shiny/www/build/* && mv React/build Shiny/www",
"install_react": "npm install --prefix React",
"install_shiny": "cd Shiny && Rscript -e \"renv::restore()\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/filipakkad/react_shiny_template.git"
},
"author": "Filip Akkad",
"license": "ISC",
"bugs": {
"url": "https://github.com/filipakkad/react_shiny_template/issues"
},
"homepage": "https://github.com/filipakkad/react_shiny_template#readme"
}